import yargs from 'yargs'; export declare const command = "init"; export declare const describe = "Initializes a new project in the current directory."; export declare const builder: (yargsBuilder: yargs.Argv<{}>) => yargs.Argv & { react: boolean; }>; export declare const handler: (argv: yargs.Arguments & { react: boolean; }>) => void;