import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SyncReleaseGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; /** * Lock released successfully. */ export type SyncReleaseResponse = { success: boolean; }; /** @internal */ export declare const SyncReleaseResponse$inboundSchema: z.ZodType; export declare function syncReleaseResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=syncrelease.d.ts.map