import { z } from 'zod'; declare const _zSortOrder: z.ZodObject<{ DESC: z.ZodLiteral<"DESC">; ASC: z.ZodLiteral<"ASC">; }, "strip", z.ZodTypeAny, { ASC: "ASC"; DESC: "DESC"; }, { ASC: "ASC"; DESC: "DESC"; }>; type _zSortOrder = z.infer; export declare const zSortOrder: z.ZodEnum<["ASC", "DESC"]>; export type zSortOrder = z.infer; export declare const SortOrder: _zSortOrder; export type SortOrder = keyof typeof SortOrder; export declare const DefaultSortOrder: "DESC"; export {};