import type { KlawConfig } from "../config/types.klaw.js"; import type { RealtimeTranscriptionProviderPlugin } from "../plugins/types.js"; import type { RealtimeTranscriptionProviderId } from "./provider-types.js"; export declare function normalizeRealtimeTranscriptionProviderId(providerId: string | undefined): RealtimeTranscriptionProviderId | undefined; export declare function listRealtimeTranscriptionProviders(cfg?: KlawConfig): RealtimeTranscriptionProviderPlugin[]; export declare function getRealtimeTranscriptionProvider(providerId: string | undefined, cfg?: KlawConfig): RealtimeTranscriptionProviderPlugin | undefined; export declare function canonicalizeRealtimeTranscriptionProviderId(providerId: string | undefined, cfg?: KlawConfig): RealtimeTranscriptionProviderId | undefined;