import { EnumIR } from "../../types.js"; import { FastGen, SlowGen } from "../context.js"; //#region src/core/codegen/schemas/enum.d.ts declare function slowEnum(ir: EnumIR, g: SlowGen): string; declare function fastEnum(ir: EnumIR, g: FastGen): string; //#endregion export { fastEnum, slowEnum }; //# sourceMappingURL=enum.d.ts.map