import { LocalBlueprintCommand } from '../../baseCommands.js';
export default class PlanCommand extends LocalBlueprintCommand<typeof PlanCommand> {
    static summary: string;
    static description: string;
    static examples: string[];
    run(): Promise<void>;
}
