import yargs from 'yargs'; export declare const command = "init "; export declare const describe = "Generate the project boilerplate in the current working directory."; export declare const builder: (argv: yargs.Argv<{}>) => yargs.Argv<{}>; export declare const handler: (argv: any) => Promise;