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