import { OnInit } from '@angular/core';
import { FormGroup } from '@angular/forms';
import { LambToolsService } from './services/tools.service';
export declare class LambShowErrorComponent implements OnInit {
    private lambtoolService;
    controlName: string;
    group: FormGroup;
    constructor(lambtoolService: LambToolsService);
    ngOnInit(): void;
    getControlErrors(): any;
    mustShowErrors(): boolean;
    readonly getMsmError: string;
}
