import React, { ReactNode, PropsWithChildren } from 'react'; interface IProps { label: string | boolean; hint: string; size: Size; required: boolean; items: { label: string | boolean | ReactNode; hint: string | boolean | ReactNode; attribute: string; prefix: string; model: string | object | (() => void); component: any; required: boolean; size: Size; placeholder: string; disabled: boolean; onChange: () => void; className: string; headerClassName: string; view: ReactNode; }[]; showAdd: boolean; showRemove: boolean; onAdd: (e: any) => void; renderField: () => void; disabled: boolean; className: string; style: any; } declare const FieldListView: React.FunctionComponent>; export default FieldListView;