export declare function isPlainObject(value: unknown): value is Record; export declare function deepClone(value: T, cache?: WeakMap): T; export declare function isEmpty(value: unknown): boolean; export declare function pick, K extends keyof T>(source: T, keys: readonly K[]): Pick; export declare function omit, K extends keyof T>(source: T, keys: readonly K[]): Omit; export declare class CommonUtils { static deepClone: typeof deepClone; static isEmpty: typeof isEmpty; static isPlainObject: typeof isPlainObject; static pick: typeof pick; static omit: typeof omit; } //# sourceMappingURL=object.d.ts.map