import { NgErrorMessageLoader } from './ng-error-message.loader.service';
/**
 * Service for serving the errors dictionary
 */
export declare class NgErrorMessageService {
    private _loader;
    /**
     * Contains the dictionary of errors
     */
    private _errors;
    readonly errors: any;
    constructor(_loader: NgErrorMessageLoader);
    /**
     * Loads the dictionary
     */
    load(): void;
}
