import * as z from "zod/v4"; export type DeleteWorkspaceGlobals = { /** * 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 DeleteWorkspaceRequest = { /** * Unique identifier for the workspace. */ id: string; }; /** @internal */ export type DeleteWorkspaceRequest$Outbound = { id: string; }; /** @internal */ export declare const DeleteWorkspaceRequest$outboundSchema: z.ZodType; export declare function deleteWorkspaceRequestToJSON(deleteWorkspaceRequest: DeleteWorkspaceRequest): string; //# sourceMappingURL=deleteworkspace.d.ts.map