type Config = Record; /** * Merges configurations into a single configuration object and returns it. * @param arg Configurations to merge. * @param options Options for merging. */ export declare function mergeConfig(arg: [...(T | Partial)[]], { strict }?: MergeOptions): T; interface MergeOptions { /** * If true, empty child object(s) of source are not ignored during the merge. Default is false. */ strict?: boolean; } export {};