import { NullableIR, SchemaIR } from "../../types.js"; import { FastGen, SlowGen } from "../context.js"; //#region src/core/codegen/schemas/nullable.d.ts declare function slowNullable(ir: SchemaIR & { type: "nullable"; }, g: SlowGen): string; declare function fastNullable(ir: NullableIR, g: FastGen): string | null; //#endregion export { fastNullable, slowNullable }; //# sourceMappingURL=nullable.d.ts.map