import React from "react"; import { AttachmentService } from "../../AttachmentService"; import { Attachment } from "../../util/attrs"; export interface Props { attachment: Attachment; attachmentService: AttachmentService; children?: React.ReactNode; editable: boolean; previewPosition?: "top" | "bottom"; onHidePreview?: () => void; onShowPreview: () => void; onRemove: () => void; style?: "active" | "selected"; fullWidthPreview?: boolean; } export declare class AttachmentCard extends React.PureComponent { render(): JSX.Element; }