import * as z from "zod/v4"; export type SyncContextRequest = { managerId?: string | undefined; /** * Unique identifier for the deployment. */ deploymentId: string; }; /** @internal */ export type SyncContextRequest$Outbound = { managerId?: string | undefined; deploymentId: string; }; /** @internal */ export declare const SyncContextRequest$outboundSchema: z.ZodType; export declare function syncContextRequestToJSON(syncContextRequest: SyncContextRequest): string; //# sourceMappingURL=synccontextrequest.d.ts.map