import { type CSSProperties, type ReactNode } from 'react'; export type FieldRenderProps = { inputId: string; labelId: string; describedBy?: string; hasError: boolean; }; export type FieldProps = { children: (props: Readonly) => ReactNode; label: string; hideLabel?: boolean; error?: string; helperText?: string; required?: boolean; disabled?: boolean; id?: string; className?: string; style?: CSSProperties; labelElement?: 'label' | 'span'; }; declare function Field({ children, label, hideLabel, error, helperText, required, disabled, id, className, style, labelElement, }: Readonly): ReactNode; export default Field; //# sourceMappingURL=index.d.ts.map