import type { Config } from '../../../config/schema.js'; /** * Per-vendor slice of {@link Config.providers} safe for GET `/api/config`. */ export type SafeProviderAuthEntry = { region?: string; baseUrl?: string; }; /** * Build a redacted `providersConfig` map for the gateway console (image / audio / video keys). */ export declare function buildSafeProvidersConfigForWeb(providers: Config['providers'] | undefined): Record;