import * as React from "react"; import { type ReactNode } from "react"; import type { FormListItemField, FormListInstance } from "./form.shared"; export interface FormListProps { name: string; children: (fields: FormListItemField[], operation: FormListInstance) => ReactNode; defaultValue?: any; } declare const _default: React.ForwardRefExoticComponent>; export default _default;