import { Config } from '@oclif/core';
export interface GenerateOptions {
    directory: string;
    reset: boolean;
    commandConfig: Config;
    apiKey?: string;
    template?: string;
    flavor?: string;
    name?: string;
    cloneUrl?: string;
    configName?: string;
}
declare function generate(options: GenerateOptions): Promise<void>;
export default generate;
