import React from "react"; type Props = { open: boolean; attachmentName: string; onClose: (confirmed: boolean) => void; isDeleting?: boolean; }; export declare const DeleteAttachmentConfirmationDialog: ({ open, attachmentName, onClose, isDeleting, }: Props) => React.JSX.Element; export {};