import { AgentType } from '@/types/models/widget-config'; interface SendChatMessageParams { agentType: AgentType; message: string; selectedAgentId: number; customerId?: string; customerToken: string; chatId: number | null; signal?: AbortSignal; } export declare function useSendChatMessage(): { sendChatMessage: (params: SendChatMessageParams) => Promise; }; export {};