import type { KlawConfig } from "../config/types.js"; import type { SpeechProviderPlugin } from "../plugins/types.js"; export { normalizeSpeechProviderId } from "./provider-registry-core.js"; export declare const listSpeechProviders: (cfg?: KlawConfig) => SpeechProviderPlugin[]; export declare const listLoadedSpeechProviders: (cfg?: KlawConfig) => SpeechProviderPlugin[]; export declare const getSpeechProvider: (providerId: string | undefined, cfg?: KlawConfig) => SpeechProviderPlugin | undefined; export declare const canonicalizeSpeechProviderId: (providerId: string | undefined, cfg?: KlawConfig) => import("./provider-types.ts").SpeechProviderId | undefined;