import { Yarguments } from '@neo-one/utils-node'; import yargs from 'yargs'; export declare const command = "build"; export declare const describe = "Builds the project and deploys it to the local development network."; export declare const builder: (yargsBuilder: typeof yargs) => yargs.Argv & { reset: boolean; } & { configPath: string | undefined; }>; export declare const handler: (argv: Yarguments>) => void;