import * as z from "zod/v4-mini"; import { SortDirection } from "./sort-direction.js"; export type SortCondition = { direction?: SortDirection | undefined; field?: string | undefined; }; /** @internal */ export type SortCondition$Outbound = { direction?: string | undefined; field?: string | undefined; }; /** @internal */ export declare const SortCondition$outboundSchema: z.ZodMiniType; export declare function sortConditionToJSON(sortCondition: SortCondition): string; //# sourceMappingURL=sort-condition.d.ts.map