type FilterFn = (value: any, key: string, object: T) => boolean; /** * Returns the items of an object that meet the condition specified in a callback function. * * @param object the object to loop through * @param fn The filter function */ export declare function objectFilter>(object: T, fn: FilterFn): Record; export {};