import * as z from "zod/v4-mini"; import { Unrecognized } from "./unrecognized.js"; export type ClosedEnum>> = T[keyof T]; export type OpenEnum>> = T[keyof T] | Unrecognized; export declare function inboundSchema>(enumObj: T): z.ZodMiniType, unknown>; export declare function inboundSchemaInt>(enumObj: T): z.ZodMiniType, unknown>; export declare function outboundSchema>(_: T): z.ZodMiniType>; export declare function outboundSchemaInt>(_: T): z.ZodMiniType>; //# sourceMappingURL=enums.d.ts.map