import { ComponentType } from 'react'; import { UseMutationOptions } from 'react-query'; import { AttachmentAction, AttachmentOperation } from './AttachmentTypes'; export declare function AttachmentConfirmationModal = Record>({ attachmentOperations, getAttachmentMutationOptions, resourceType, resourceName, redirectUrl, EntityIcon, cancelButtonDisabled, onCancel, onExit, }: { attachmentOperations: AttachmentOperation[]; getAttachmentMutationOptions: () => UseMutationOptions; resourceName: string; resourceType: RESOURCE_TYPE; redirectUrl: string; EntityIcon: ComponentType>; cancelButtonDisabled?: boolean; onCancel?: () => void; onExit?: (successfullOperations: AttachmentOperation[], failedOperations: AttachmentOperation[]) => void; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AttachmentConfirmationModal.d.ts.map