import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * The direction in which to sort the results */ export declare const SortDirection: { readonly Asc: "asc"; readonly Desc: "desc"; }; /** * The direction in which to sort the results */ export type SortDirection = ClosedEnum; /** @internal */ export declare const SortDirection$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SortDirection$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 SortDirection$ { /** @deprecated use `SortDirection$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Asc: "asc"; readonly Desc: "desc"; }>; /** @deprecated use `SortDirection$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Asc: "asc"; readonly Desc: "desc"; }>; } //# sourceMappingURL=sortdirection.d.ts.map