import * as React from 'react'; import type { FormDataType, FormFields, PartialFormDataType } from '@douglasneuroinformatics/libui-form-types'; import type { FormErrors } from './types.ts'; export type FieldsComponentProps = { errors: FormErrors; fields: FormFields; readOnly?: boolean; setErrors: React.Dispatch>>; setValues: React.Dispatch>>; values: PartialFormDataType; }; /** Renders an object containing key value pairs, where the value is a FormField of some kind */ export declare const FieldsComponent: ({ fields, ...props }: FieldsComponentProps) => import("react/jsx-runtime").JSX.Element[]; //# sourceMappingURL=FieldsComponent.d.ts.map