import { CommandConfig, CommandConfigBeforeNormalize } from './types'; export declare const loadConfig: (cwd: string, override?: Partial) => CommandConfig; export declare const getConfig: () => CommandConfig; export declare const setConfig: (key: T, value: CommandConfig[T]) => CommandConfig; export declare const normalizeConfig: (cwd: string, userConfig: Partial) => CommandConfig; export declare const validateConfig: (userConfig: Partial) => CommandConfigBeforeNormalize;