export declare type Omit = Pick>; /** * Make the property not writable using `defineProperty`. Internal use only. */ export declare function readOnly(target: object, property: string | string[]): void; /** * Make an attribute writeable. Internal use only. */ export declare function writable(target: object, property: string | string[]): void; export declare const noOp: (...args: any[]) => any; /** * Recursive Partial taken from here: https://stackoverflow.com/a/51365037 */ export declare type RecursivePartial = { [P in keyof T]?: T[P] extends Array ? Array> : T[P] extends object ? RecursivePartial : T[P]; };