import * as z from "zod/v3"; 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.ZodType, z.ZodTypeDef, unknown>; export declare function inboundSchemaInt>(enumObj: T): z.ZodType, z.ZodTypeDef, unknown>; export declare function outboundSchema>(_: T): z.ZodType>; export declare function outboundSchemaInt>(_: T): z.ZodType>; //# sourceMappingURL=enums.d.ts.map