import { CreateAppCommand } from '../../create-app-command.js';
export default class CreateFrontend extends CreateAppCommand {
    static description: string;
    static examples: {
        command: string;
        description: string;
    }[];
    static flags: {
        pkg: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
    };
    run(): Promise<void>;
}
