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