import { ReferenceManyFieldProps as RaReferenceManyFieldProps } from 'react-admin'; /** * This component allows you to manage the display of a list of records related to a main record. * This component is a customized version of the ReferenceManyField component of React-Admin. * * If you want to display records and not show the list of available actions (bulk action buttons) * you can set the bulkActionButtons prop to false and, subsequently, if you use an internal component of type * you must set the same property, bulkActionButtons, to false (in this way the top padding of the component is completely removed). * * @example * import { ReferenceManyField, Datagrid } from '@applica-software-guru/react-admin'; * * const MyComponent = (props) => ( * * * ... * * */ declare function ReferenceManyField(props: ReferenceManyFieldProps): JSX.Element; type ReferenceManyFieldProps = RaReferenceManyFieldProps & { /** * Default undefined, serve ad aggiungere un padding superiore al componente per consentire * la visualizzazione della toolbar delle bulk action buttons. */ bulkActionButtons?: boolean | any; }; export { ReferenceManyField }; export type { ReferenceManyFieldProps }; //# sourceMappingURL=ReferenceManyField.d.ts.map