import * as React from 'react'; import { type ReactNode } from 'react'; import { type UseFieldArrayReturn } from 'react-hook-form'; import type { RaRecord } from "../../types.js"; export declare const SimpleFormIteratorBase: (props: SimpleFormIteratorBaseProps) => React.JSX.Element | null; export interface SimpleFormIteratorBaseProps extends Partial { children: ReactNode; inline?: boolean; meta?: { error?: any; submitFailed?: boolean; }; getItemDefaults?: (item: any) => any; record?: RaRecord; resource?: string; source?: string; disableAutoFocus?: boolean; } //# sourceMappingURL=SimpleFormIteratorBase.d.ts.map