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