import { Yarguments } from '@neo-one/utils-node'; import yargs from 'yargs'; export declare const command = "deploy"; export declare const describe = "Deploys the project using the migration file."; export declare const builder: (yargsBuilder: typeof yargs) => yargs.Argv & { network: string; } & { configPath: string | undefined; }>; export declare const handler: (argv: Yarguments>) => void;