import * as z from "zod/v4"; export type RetryManagerSetupGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type RetryManagerSetupRequest = { /** * Unique identifier for a manager. */ id: string; }; /** @internal */ export type RetryManagerSetupRequest$Outbound = { id: string; }; /** @internal */ export declare const RetryManagerSetupRequest$outboundSchema: z.ZodType; export declare function retryManagerSetupRequestToJSON(retryManagerSetupRequest: RetryManagerSetupRequest): string; //# sourceMappingURL=retrymanagersetup.d.ts.map