import { ReactNode } from 'react'; import { BaseComponentProps } from '../../../types'; import './FormField.css'; export interface FormFieldProps extends BaseComponentProps { label?: string; htmlFor?: string; required?: boolean; error?: string; helperText?: string; children: ReactNode; } export declare const FormField: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=FormField.d.ts.map