import { Command } from 'commander'; type Show_opts = { json?: boolean; pretty?: boolean; output?: string; }; declare const handle_show_config: (opts: Show_opts) => void; declare const handle_get_config: (key: string) => void; declare const handle_set_config: (key: string, value: string) => void; declare const config_command: Command; export { config_command, handle_show_config, handle_get_config, handle_set_config }; //# sourceMappingURL=config.d.ts.map