import { BigIntIR } from "../../types.js"; import { FastGen, SlowGen } from "../context.js"; //#region src/core/codegen/schemas/bigint.d.ts declare function slowBigInt(ir: BigIntIR, g: SlowGen): string; declare function fastBigInt(ir: BigIntIR, g: FastGen): string | null; //#endregion export { fastBigInt, slowBigInt }; //# sourceMappingURL=bigint.d.ts.map