import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; export declare const SortOrder: { readonly Asc: "ASC"; readonly Desc: "DESC"; }; export type SortOrder = ClosedEnum; /** @internal */ export declare const SortOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SortOrder$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 SortOrder$ { /** @deprecated use `SortOrder$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Asc: "ASC"; readonly Desc: "DESC"; }>; /** @deprecated use `SortOrder$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Asc: "ASC"; readonly Desc: "DESC"; }>; } //# sourceMappingURL=sortorder.d.ts.map