import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; export declare const SyncSort: { readonly DbUpdateAsc: "DB_UPDATE_ASC"; readonly DbUpdateDesc: "DB_UPDATE_DESC"; }; export type SyncSort = ClosedEnum; /** @internal */ export declare const SyncSort$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SyncSort$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 SyncSort$ { /** @deprecated use `SyncSort$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly DbUpdateAsc: "DB_UPDATE_ASC"; readonly DbUpdateDesc: "DB_UPDATE_DESC"; }>; /** @deprecated use `SyncSort$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly DbUpdateAsc: "DB_UPDATE_ASC"; readonly DbUpdateDesc: "DB_UPDATE_DESC"; }>; } //# sourceMappingURL=syncsort.d.ts.map