import { SymbolIR } from "../../types.js"; import { FastGen, SlowGen } from "../context.js"; //#region src/core/codegen/schemas/symbol.d.ts declare function slowSymbol(_ir: SymbolIR, g: SlowGen): string; declare function fastSymbol(_ir: SymbolIR, g: FastGen): string | null; //#endregion export { fastSymbol, slowSymbol }; //# sourceMappingURL=symbol.d.ts.map