import { Arguments, CommandBuilder } from 'yargs'; export declare const command = "init"; export declare const aliases: string[]; export declare const describe = "Initialize laborious."; export declare const builder: CommandBuilder; export declare const handler: (argv: Arguments<{ cwd: string; }>) => Promise;