import { z } from 'zod'; import { Partial } from './partial'; /** * Overrides the properties of the base object with the existing properties of the provided * object(s) * @param base The base object to override * @param overrides The object(s) to override the base object with */ export declare const override: (base: T, ...overrides: Array>) => T; export declare const overrideValidItems: (base: A, override: B, schema: z.ZodType) => A; //# sourceMappingURL=merge.d.ts.map