import * as Config from '@oclif/config'; /** * loads CLI plugin/multi config */ export declare function loadConfig(opts?: loadConfig.Options): { run(ctx: { config: Config.IConfig; }): Promise; }; export declare namespace loadConfig { let root: string; interface Options { root?: string; reset?: boolean; } }