export declare const removeUndefinedProperties: (object: T) => T; type Test = string[] | ((key: string, value: any) => boolean); /** * Recursively remove properties from the object, returning the modified object. */ export declare const removeProperties: (root: any, condition: Test) => any; export {}; //# sourceMappingURL=remove-undefined-keys.d.ts.map