import type { MetaData } from '@ant-design/pro-chat'; import React, { type FC } from 'react'; export interface BotInfo { assistantMeta?: MetaData; helloMessage?: string; starters?: string[]; } export interface ChatProps extends BotInfo { apiDomain?: string; apiUrl?: string; drawerWidth?: number; prompt?: string; token?: string; style?: React.CSSProperties; hideLogo?: boolean; disabled?: boolean; disabledPlaceholder?: string; getToolsResult?: (response: any) => void; } declare const Chat: FC; export default Chat;