import type { __VkBubbleList } from '@vunk/plus/components/bubble-list'; import type { SetDataEvent } from '@vunk/core'; import type { PropType } from 'vue'; import type { SpeechToText, TextToSpeech } from './types'; export declare const props: { /** * @description BubbleList渲染时数据, 受控于setData */ data: { type: PropType<__VkBubbleList.RenderData>; }; speechToText: { type: PropType; }; textToSpeech: { type: PropType; }; }; export declare const emits: { setData: (e: SetDataEvent) => SetDataEvent; };