import type { DeepPartial } from '../../types/internal'; /** * Deep merge two objects (arrays does not merge). * `y` overwrites `x`; `x` and `y` are immutable. */ export declare const deepMerge: (x: Type, y: DeepPartial) => Type;