import type { PluginChannelRegistration } from "../../plugins/registry-types.js"; import type { ChannelId } from "./channel-id.types.js"; type ChannelRegistryValueResolver = (entry: PluginChannelRegistration) => TValue | undefined; export declare function createChannelRegistryLoader(resolveValue: ChannelRegistryValueResolver): (id: ChannelId) => Promise; export {};