/// <reference types="react" />
import { FormControlAlign, FormLabelAlign, FormValidateTrigger } from "./form.shared";
interface FormContextValue {
    name?: string;
    colon?: boolean;
    labelAlign?: FormLabelAlign;
    controlAlign?: FormControlAlign;
    validateTrigger?: FormValidateTrigger;
}
declare const FormContext: import("react").Context<FormContextValue>;
export default FormContext;
