import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; export declare const OrderSort: { readonly LastUpdateAsc: "LAST_UPDATE_ASC"; readonly LastUpdateDesc: "LAST_UPDATE_DESC"; }; export type OrderSort = ClosedEnum; /** @internal */ export declare const OrderSort$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const OrderSort$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace OrderSort$ { /** @deprecated use `OrderSort$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly LastUpdateAsc: "LAST_UPDATE_ASC"; readonly LastUpdateDesc: "LAST_UPDATE_DESC"; }>; /** @deprecated use `OrderSort$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly LastUpdateAsc: "LAST_UPDATE_ASC"; readonly LastUpdateDesc: "LAST_UPDATE_DESC"; }>; } //# sourceMappingURL=ordersort.d.ts.map