import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteManagerGlobals = { /** * 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 DeleteManagerRequest = { /** * Unique identifier for a manager. */ id: string; }; /** * Manager deletion enqueued successfully. */ export type DeleteManagerResponse = { message: string; }; /** @internal */ export type DeleteManagerRequest$Outbound = { id: string; }; /** @internal */ export declare const DeleteManagerRequest$outboundSchema: z.ZodType; export declare function deleteManagerRequestToJSON(deleteManagerRequest: DeleteManagerRequest): string; /** @internal */ export declare const DeleteManagerResponse$inboundSchema: z.ZodType; export declare function deleteManagerResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletemanager.d.ts.map