@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
11 lines (10 loc) • 372 B
TypeScript
import { type MarkdownProps } from '@lobehub/ui';
import React from 'react';
import { ThinkProps } from './MarkdownElements/AntThinking/Component';
export interface ChatMarkdownProps extends MarkdownProps {
customComponentProps?: {
think?: Partial<ThinkProps>;
[k: string]: any;
};
}
export declare const ChatMarkdown: React.FC<ChatMarkdownProps>;