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