import Yargs from "yargs"; export declare const command = "init [name]"; export declare const describe = "Init a new wsce project"; export declare const builder: (yargs: typeof Yargs) => Yargs.Argv<{ name: string | undefined; } & { template: string | undefined; } & { typings: boolean; }>; export declare const handler: (args: any) => Promise;