import type { MarkdownItAsync } from 'markdown-it-async'; import type { PropType } from 'vue'; export declare const props: { source: { type: StringConstructor; default: string; }; delay: { type: NumberConstructor; default: number; }; pause: { type: BooleanConstructor; default: boolean; }; /** * 禁用typing */ disabled: { type: BooleanConstructor; default: boolean; }; /** * @description markdown-it 配置 */ markdownItSetup: { type: PropType<(md: MarkdownItAsync) => void>; default: null; }; finished: { type: BooleanConstructor; }; loading: { type: BooleanConstructor; default: boolean; }; }; export declare const emits: { typing: null; 'update:finished': null; };