///
import type { AnyZodObject } from 'zod';
export type FormContextType = {
initialValues: T;
disabled: boolean;
readOnly: boolean;
loading: boolean;
showOptional: boolean;
zodSchema?: AnyZodObject;
};
export declare const FormContext: import("react").Context>;
/**
* Saves initial values and other useful information to context, which can be
* accessed by components inside the form.
*/
export declare function useFormContext(): FormContextType;
//# sourceMappingURL=useFormContext.d.ts.map