import { Yarguments } from '@neo-one/utils-node'; import yargs from 'yargs'; export declare const command = "generate"; export declare const describe = "Compiles the contracts and generates common code."; export declare const builder: (yargsBuilder: typeof yargs) => yargs.Argv<{ configPath: string | undefined; }>; export declare const handler: (argv: Yarguments>) => void;