import * as PropTypes from "prop-types"; import { UncertainObject } from "../../Validators"; export declare enum Event { change = "change", focus = "focus", blur = "blur" } declare type ValidateOn = keyof typeof Event | ((values: UncertainObject, errors: UncertainObject) => boolean); export interface FormGroupProviderProps { attribute: string; validateOn?: ValidateOn | Array; } export declare const FormGroupProviderPropTypes: PropTypes.ValidationMap; export {};