import { Yarguments } from '@neo-one/utils-node'; import yargs from 'yargs'; export declare const command = "compile"; export declare const describe = "Compiles a project and outputs code to a local directory."; export declare const builder: (yargsBuilder: typeof yargs) => yargs.Argv<{ outDir: string | undefined; } & { path: string | undefined; } & { json: boolean | undefined; } & { avm: boolean | undefined; } & { debug: boolean | undefined; } & { opcodes: boolean | undefined; } & { configPath: string | undefined; }>; export declare const handler: (argv: Yarguments>) => void;