import { InjectionToken } from '@angular/core'; export declare const CUSTOM_ERROR_MESSAGES: InjectionToken; export interface CustomErrorMessageFormatter { error: string; format: (label?: string, error?: any) => string; } export declare type CustomErrorMessageFormatters = CustomErrorMessageFormatter[];