import { Yarguments } from '@neo-one/utils-node'; import yargs from 'yargs'; export declare const command = "console"; export declare const describe = "Starts a REPL with project contracts and client APIs available."; export declare const builder: (yargsBuilder: typeof yargs) => yargs.Argv & { networks: readonly string[]; } & { configPath: string | undefined; }>; export declare const handler: (argv: Yarguments>) => void;