import React from 'react';
import type { Attachment } from 'stream-chat';
export type UnsupportedAttachmentProps = {
    attachment: Attachment;
};
export declare const UnsupportedAttachment: ({ attachment }: UnsupportedAttachmentProps) => React.JSX.Element;
