import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * Sorting by data update time */ export declare const ActivitySort: { readonly LatestFirst: "LATEST_FIRST"; readonly EarliestFirst: "EARLIEST_FIRST"; }; /** * Sorting by data update time */ export type ActivitySort = ClosedEnum; /** @internal */ export declare const ActivitySort$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ActivitySort$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 ActivitySort$ { /** @deprecated use `ActivitySort$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly LatestFirst: "LATEST_FIRST"; readonly EarliestFirst: "EARLIEST_FIRST"; }>; /** @deprecated use `ActivitySort$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly LatestFirst: "LATEST_FIRST"; readonly EarliestFirst: "EARLIEST_FIRST"; }>; } //# sourceMappingURL=activitysort.d.ts.map