import { DataContent } from 'ai'; import React from 'react'; import { LLMContextService } from '../../common/llm-context'; export interface IChatMentionInputProps { onSend: (value: string, images?: string[], agentId?: string, command?: string, option?: { model: string; [key: string]: any; }) => void; onValueChange?: (value: string) => void; onExpand?: (value: boolean) => void; placeholder?: string; enableOptions?: boolean; disabled?: boolean; sendBtnClassName?: string; defaultHeight?: number; value?: string; images?: Array; autoFocus?: boolean; theme?: string | null; setTheme: (theme: string | null) => void; agentId: string; setAgentId: (id: string) => void; defaultAgentId?: string; command: string; setCommand: (command: string) => void; disableModelSelector?: boolean; sessionModelId?: string; contextService?: LLMContextService; } export declare const ChatMentionInput: (props: IChatMentionInputProps) => React.JSX.Element; //# sourceMappingURL=ChatMentionInput.d.ts.map