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