import { r as SecretDefaults, t as ResolverContext } from "./runtime-shared-Cx4aSmWd.js"; import { n as ChannelAccountPredicate, r as ChannelAccountSurface } from "./channel-secret-basic-runtime-D9tLZFOx.js"; //#region src/secrets/channel-secret-tts-runtime.d.ts /** Collects nested TTS provider SecretRefs from channel root and account-specific blocks. */ declare function collectNestedChannelTtsAssignments(params: { /** Channel config key used in runtime warning/assignment paths. */channelKey: string; /** Nested channel config field that owns the `tts` block, such as `outbound`. */ nestedKey: string; channel: Record; surface: ChannelAccountSurface; defaults: SecretDefaults | undefined; context: ResolverContext; /** Whether the top-level nested `tts` block can affect runtime behavior. */ topLevelActive: boolean; topInactiveReason: string; /** Per-account activity predicate for account-specific nested `tts` blocks. */ accountActive: ChannelAccountPredicate; accountInactiveReason: string | ((entry: { accountId: string; account: Record; enabled: boolean; }) => string); }): void; //#endregion export { collectNestedChannelTtsAssignments as t };