export declare const removeUndefinedFromObj: (obj: any) => { [k: string]: unknown; }; export declare const objIsEmpty: (obj: any) => boolean; export declare const trimKeysAndValue: (object: object) => void; export type MapBoolean = { [PropertyKey in keyof T]: boolean; }; export declare const mapObjValuesToTrue: (obj: any) => void; export declare function deepClone(obj: any): any; export declare function getTargetDtoFields any>(originalObject: any, targetDto: T): Partial;