interface SymbolEntry { id: string; content: string; } declare function mount(): void; declare function add(symbolData: SymbolEntry): void; /** @internal Reset all state — for testing only. */ declare function _reset(): void; /** @internal Perform auto-mount based on document readiness. */ declare function autoMount(): void; declare const _default: { add: typeof add; mount: typeof mount; _reset: typeof _reset; autoMount: typeof autoMount; }; export default _default; //# sourceMappingURL=browser-sprite.d.ts.map