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