import { FormGroup, AbstractControl } from '@angular/forms';
export declare class LambToolsService {
    constructor();
    getControl(form: FormGroup, controlName: string): AbstractControl;
    hasChanges(control: AbstractControl): boolean;
    mustShowErrors(form: FormGroup, controlName: string): boolean;
    getControlErrors(form: FormGroup, controlName: string): Object;
}
