import * as z from "zod/v4"; /** * Request schema for updating a manager to a new release */ export type UpdateManagerRequest = { /** * Optional release ID to update to. If not provided, the active release will be chosen */ releaseId?: string | null | undefined; }; /** @internal */ export type UpdateManagerRequest$Outbound = { releaseId?: string | null | undefined; }; /** @internal */ export declare const UpdateManagerRequest$outboundSchema: z.ZodType; export declare function updateManagerRequestToJSON(updateManagerRequest: UpdateManagerRequest): string; //# sourceMappingURL=updatemanagerrequest.d.ts.map