import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; export declare const OrderBy: { readonly Asc: "ASC"; readonly Desc: "DESC"; }; export type OrderBy = ClosedEnum; export type SortOptions = { orderBy?: OrderBy | undefined; sortBy?: string | undefined; }; /** @internal */ export declare const OrderBy$outboundSchema: z.ZodNativeEnum; /** @internal */ export type SortOptions$Outbound = { orderBy?: string | undefined; sortBy?: string | undefined; }; /** @internal */ export declare const SortOptions$outboundSchema: z.ZodType; export declare function sortOptionsToJSON(sortOptions: SortOptions): string; //# sourceMappingURL=sortoptions.d.ts.map