/** * @license * Copyright 2025 OSAgent OC * SPDX-License-Identifier: Apache-2.0 */ import type { OSAChat } from '../core/geminiChat.js'; import type { Config } from '../config/config.js'; export interface NextSpeakerResponse { reasoning: string; next_speaker: 'user' | 'model'; } export declare function checkNextSpeaker(chat: OSAChat, config: Config, abortSignal: AbortSignal, promptId: string): Promise;