import { Yarguments } from '@neo-one/utils-node'; import yargs from 'yargs'; export declare const command = "info"; export declare const describe = "Prints project configuration."; export declare const builder: (yargsBuilder: typeof yargs) => yargs.Argv<{ configPath: string | undefined; }>; export declare const handler: (argv: Yarguments>) => void;