export declare type Errors = { [x: string]: string; }; declare type JSObject = { [x: string]: any; }; declare type MapperOptions = { errors: JSObject; config: JSObject; }; export declare const mapCustomAttributesErrors: ({ errors, config, }: MapperOptions) => Errors; export {};