import { ReactElement } from 'react'; import { MessageModalLayoutProps } from '@wix/design-system'; export type MultiCollectionBulkActionToolbarRenderProps = (props: { readonly isSelectAll: boolean; readonly isModalOpen: boolean; openModal: () => void; closeModal: () => void; clearSelection: () => void; openConfirmModal: (props?: Partial) => void; }) => ReactElement; export type MultiCollectionBulkActionModalRenderProps = (props: { isSelectAll: boolean; readonly isModalOpen: boolean; openModal: () => void; closeModal: () => void; clearSelection: () => void; openConfirmModal: (props?: Partial) => void; }) => ReactElement; //# sourceMappingURL=MultiCollectionBulkActionRenderProps.d.ts.map