//#region src/object.d.ts declare const without: (obj: T, ...props: P[]) => Omit; declare const removeUndefined: (obj: T) => Partial; declare const applyFunctionToObj: , R>(obj: T, fn: (val: any, key: string) => R) => Record; declare const filterProps: >(obj: T, filter: (a: any) => boolean) => T; //#endregion export { applyFunctionToObj, filterProps, removeUndefined, without }; //# sourceMappingURL=object.d.ts.map