import { SpeechEngine } from './types'; export interface RoutingEngines { device: SpeechEngine; /** Null when hosted TTS is not configured — then this is a pass-through. */ hosted: SpeechEngine | null; } export declare function createRoutingSpeechEngine({ device, hosted }: RoutingEngines): SpeechEngine; //# sourceMappingURL=routingSpeechEngine.d.ts.map