import Validators from './Validators';
export interface Group {
    controls: {
        [key: string]: Control;
    };
    validity: boolean;
    submited: boolean;
}
export interface Control {
    value: any;
    validity: boolean;
    errors: {
        [key: string]: any;
    };
    requiredValidations: {
        [key: string]: any;
    };
    type?: string;
    removeValidators(validators: Validators[]): void;
    setValidators(validators: Validators[]): void;
    setValue(value: any): void;
}
