import { FormControl } from '@angular/forms';
import { NgFvehLibService } from '../../ng-fveh-lib.service';
export declare class ErrorsPresenterComponent {
    service: NgFvehLibService;
    field: FormControl;
    constructor(service: NgFvehLibService);
    getFieldErrors(): string[];
    getErrorMessage(errorPropertyName: string): string;
    hasErrors(): boolean;
}
