import { ICommand } from '../libs/commands/ICommand'; import { Argv } from 'yargs'; import { ConfigLoader } from '../libs/config/ConfigLoader'; /** * With the config command the current loaded configuration can be returned. * By passing a "key" value which represents the path in the config object, the value of the path will be followed. */ export declare class ConfigOutputCommand implements ICommand { configLoader: ConfigLoader; command: string; aliases: string; describe: string; builder(yargs: Argv): Argv<{}>; beforeStartup(): void; beforeStorage(): void; handler(argv: any): Promise; }