/** used to read-only override fields on an object that cannot be modified. For instance, overriding the value of an * HTMLInputElement without modifying the DOM */ export declare const createProxyWithOverrides: >(target: T, overrides: Partial) => T;