import * as z from "zod/v4"; export type RetryManagerGlobals = { /** * 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 RetryManagerRequest = { /** * Unique identifier for a manager. */ id: string; }; /** @internal */ export type RetryManagerRequest$Outbound = { id: string; }; /** @internal */ export declare const RetryManagerRequest$outboundSchema: z.ZodType; export declare function retryManagerRequestToJSON(retryManagerRequest: RetryManagerRequest): string; //# sourceMappingURL=retrymanager.d.ts.map