import type { KlawConfig } from "../config/types.klaw.js"; import type { RealtimeVoiceProviderPlugin } from "../plugins/types.js"; import type { RealtimeVoiceProviderId } from "./provider-types.js"; export declare function normalizeRealtimeVoiceProviderId(providerId: string | undefined): RealtimeVoiceProviderId | undefined; export declare function listRealtimeVoiceProviders(cfg?: KlawConfig): RealtimeVoiceProviderPlugin[]; export declare function getRealtimeVoiceProvider(providerId: string | undefined, cfg?: KlawConfig): RealtimeVoiceProviderPlugin | undefined; export declare function canonicalizeRealtimeVoiceProviderId(providerId: string | undefined, cfg?: KlawConfig): RealtimeVoiceProviderId | undefined;