import { Field, InputComponentProps } from '@balgamat/react-autoform'; import { IFormGroupProps } from '@blueprintjs/core'; import { FC } from 'react'; export declare type ListProps = InputComponentProps & Partial & { fields?: Field[]; newObjectTemplate?: any; }; export declare const List: FC;