import type { ReactNode } from 'react'; type FormFieldContextValue = { htmlFor?: string; required?: boolean; error?: ReactNode; disabled?: boolean; }; declare const useFormField: () => FormFieldContextValue | null; declare const FormFieldProvider: ({ children, htmlFor, required, error, disabled, }: FormFieldContextValue & { children: ReactNode; }) => import("react/jsx-runtime").JSX.Element; export type { FormFieldContextValue }; export { FormFieldProvider, useFormField };