/** * Gets the config with any undefined properties replaced by the defaults * @param config the config * @param defaults the defaults * @returns the merged config with defaults */ export declare const mergeConfigWithDefaults: (config: T, defaults: K) => {} & K & T;