import React from 'react'; import { AySearchTableField } from '../AySearchTable/ay-search-table'; import { AnyKeyProps } from '../types/AnyKeyProps'; import { AyFormField, AyFormProps } from './ay-form'; interface AyFormListProps { field: AyFormField; formInstant: AnyKeyProps; ayFormProps: AyFormProps; getFormItem: (fields: Array, formInstans: AnyKeyProps, props: AyFormProps, childrenType?: 'group' | 'card' | 'input-group' | 'list') => React.ReactNode; } export default function AyFormList(props: AyFormListProps): JSX.Element; export {};