import { ICommentAttachment } from '../../CommentCard';
import { TranslateFuncType } from '../../../util/models';
export declare const prefix = "NexusAttachmentViewer";
export interface IAttachmentViewer {
    attachments: ICommentAttachment[];
    selectedAttachment: ICommentAttachment;
    onDownload?: (attachment: ICommentAttachment) => Promise<void>;
    onClose: () => void;
    t: TranslateFuncType;
}
export declare const AttachmentViewer: (props: IAttachmentViewer) => import("react/jsx-runtime").JSX.Element;
