import { Yarguments } from '@neo-one/utils-node'; 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: typeof yargs) => yargs.Argv & { react: boolean; } & { typescript: boolean | undefined; } & { configPath: string | undefined; }>; export declare const handler: (argv: Yarguments>) => void;