import { ReactNode } from 'react'; export interface FormFieldProps { label?: string; name?: string; error?: string; required?: boolean; hint?: string; children: ReactNode; className?: string; } export declare function FormField({ label, name, error, required, hint, children, className, }: FormFieldProps): import("react").JSX.Element; //# sourceMappingURL=FormField.d.ts.map