import type { SymbolRegistry, FunctionSignature, InterfaceDefinition, TypeAliasDefinition } from "../types.js"; export declare function createEmptyRegistry(): SymbolRegistry; export declare function addFunction(registry: SymbolRegistry, key: string, fn: FunctionSignature): void; export declare function addInterface(registry: SymbolRegistry, key: string, iface: InterfaceDefinition): void; export declare function addTypeAlias(registry: SymbolRegistry, key: string, typeAlias: TypeAliasDefinition): void; //# sourceMappingURL=symbolRegistry.d.ts.map