import type { IConfig, IPartialConfig } from './configModel'; export declare type MergeHandlerMap = { [P in keyof T]: (target: Partial, source: Partial) => Partial; }; export declare const mergeConfigs: (...configs: T[]) => T; export declare const mergeConfigsWithDefault: (...configs: T[]) => IConfig;