import { default as React } from 'react'; import { ChatMode, IApplication, KnowledgeFileMetadata } from '@glodon-aiot/apis'; export interface IChatParam { content: string; knowledgeId?: string; knowledges?: string[]; enableChatHistory?: boolean; saveHistory?: 'True' | 'False'; saveTokens?: boolean; chatMode?: ChatMode; fileId?: string; file?: Partial; promptVariables?: object; resourceToken?: string; } interface TextSiderProps { application: IApplication; sessionId?: string; docViewerUrl?: string; } declare const TextSiders: React.FC; export default TextSiders;