import type { DeepPartial } from './types'; /** * deepmerge types do not support the DeepPartial type * although deepmerge supports the behavior * This helper function works-around that issue */ export declare const fixDeepMerge: >(x: DeepPartial, y: DeepPartial) => T;