import type { ReactNode } from 'react'; import type { ContentItem } from '../types'; import { type ContentViewItem } from '../store/contentModel'; export declare const RenderSection: ({ section, contentItem, dataItem, formValues, formHandlers, formState, }: { section?: ContentItem; contentItem?: ContentViewItem; dataItem?: Record; formValues?: Record; formHandlers?: { handleChange: (field: string) => (value: any) => void; handleBlur: (field: string) => () => void; handleSubmit: () => void; setFieldTouched: (field: string) => void; }; formState?: { errors: Record; touched: Record; isSubmitting: boolean; }; }) => ReactNode; //# sourceMappingURL=section.d.ts.map