import * as z from "zod/v4"; /** * Request to release deployment lock */ export type SyncReleaseRequest = { /** * Deployment ID to release */ deploymentId: string; /** * Session identifier to release */ session: string; /** * Operation returned by acquire. Required when the lease carried update work. */ operationId?: string | undefined; /** * Attempt returned by acquire. Required when the lease carried update work. */ attemptId?: string | undefined; }; /** @internal */ export type SyncReleaseRequest$Outbound = { deploymentId: string; session: string; operationId?: string | undefined; attemptId?: string | undefined; }; /** @internal */ export declare const SyncReleaseRequest$outboundSchema: z.ZodType; export declare function syncReleaseRequestToJSON(syncReleaseRequest: SyncReleaseRequest): string; //# sourceMappingURL=syncreleaserequest.d.ts.map