/// import { AttachmentService } from "../../AttachmentService"; import { Attachment } from "../../util/attrs"; interface Props { attachment: Attachment; attachmentService: AttachmentService; editable: boolean; hasPreview: boolean; menuAlign?: "left" | "right"; onHidePreview?: () => void; onMenuToggle?: (open: boolean) => void; onRemove: () => void; onShowPreview?: () => void; } export declare function AttachmentActions(props: Props): JSX.Element; export {};