import * as React from "react"; export interface IContext { fluid: boolean; disabled: boolean; hasError: boolean; required: boolean; focusedState: boolean; onFocus: () => void; onBlur: () => void; } declare const FormControlContext: React.Context; export default FormControlContext;