import React from 'react';
import { BubbleProps } from './type';
type BubbleFileViewProps = {
bubble: BubbleProps<{
content: string;
uuid: number;
}>;
bubbleListRef: any;
placement: 'left' | 'right';
};
/**
* BubbleFileView 组件
*
* 展示聊天气泡中的文件列表
*
* @example
* ```tsx
*
* ```
*/
export declare const BubbleFileView: React.FC;
export {};