import type { NotificationChannelConfig } from "./types.ts"; import type { NotificationChannel } from "./channels.ts"; /** * Resolve notification channels for a cache key, lazily creating them * from the provided configs. The promise is cached to prevent races when * multiple notifications fire at the same time. */ export declare function resolveChannels(channelCache: Map>, cacheKey: string, configs: NotificationChannelConfig[]): Promise; //# sourceMappingURL=channel-resolver.d.ts.map