import { NodeAdapter } from "./nodeadaptor.js"; export type WireRecord = { nodeType: string; data: any; deps?: string[]; }; export type WireBundle = { version: 1; roots: string[]; table: Record; }; export declare class WireRegistry { private adapters; constructor(adapters: NodeAdapter[]); private find; bundle(roots: any[]): WireBundle; unbundle(bundle: WireBundle): any[]; } export declare function djb2(s: string): string; //# sourceMappingURL=registry.d.ts.map