import { Control, Group } from "./models";
export default class FormGroup implements Group {
    controls: {
        [key: string]: Control;
    };
    validity: boolean;
    submited: boolean;
    constructor(ctrs: {
        [key: string]: Control;
    });
}
