import * as React from "react"; export interface FormGroupContextInterface { error?: string; value: any; isFocused: boolean; onChange: (value: any) => void | Promise; onFocus: () => void | Promise; onBlur: () => void | Promise; registerElement: (element: any) => void; unregisterElement: () => void; } export declare const FormGroupContext: React.Context;