declare type MapFunction = (entry: [string, UserInfo[keyof UserInfo]]) => [string, any]; export declare const createFilterTransformer: (allowedProperties: string[], mapFunction: MapFunction) => (properties: UserInfo) => Record; export {};