import { BoxProps } from '@mui/material/Box';
import { ICommentAttachment } from '../../CommentCard';
export declare const prefix = "NexusAttachmentThumbnail";
export interface IAttachmentThumbnail extends BoxProps {
    attachment: ICommentAttachment;
    editable?: boolean;
    selected?: boolean;
    overflowCount?: number;
    noPreview?: boolean;
    onThumbnailClick?: (attachment: ICommentAttachment) => void;
    onThumbnailCancel?: (attachment: ICommentAttachment) => void;
    skeletonHeight?: number;
}
export declare const AttachmentThumbnail: (props: IAttachmentThumbnail) => import("react/jsx-runtime").JSX.Element;
