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