import { Command, flags } from '@oclif/command';
export default class Init extends Command {
    static description: string;
    static examples: string[];
    static flags: {
        config: flags.IOptionFlag<string | undefined>;
    };
    run(): Promise<void>;
}
