import { UnknownIR } from "../../types.js"; import { FastGen, SlowGen } from "../context.js"; //#region src/core/codegen/schemas/unknown.d.ts declare function slowUnknown(_ir: UnknownIR, _g: SlowGen): string; declare function fastUnknown(_ir: UnknownIR, _g: FastGen): string | null; //#endregion export { fastUnknown, slowUnknown }; //# sourceMappingURL=unknown.d.ts.map