import * as z from "zod/v4"; import * as models from "../index.js"; export type CreateWorkspaceInviteLinkGlobals = { /** * 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 CreateWorkspaceInviteLinkRequestBody = { /** * Role for workspace-scoped service accounts */ role: models.WorkspaceRole; }; export type CreateWorkspaceInviteLinkRequest = { /** * Unique identifier for the workspace. */ id: string; requestBody?: CreateWorkspaceInviteLinkRequestBody | undefined; }; /** @internal */ export type CreateWorkspaceInviteLinkRequestBody$Outbound = { role: string; }; /** @internal */ export declare const CreateWorkspaceInviteLinkRequestBody$outboundSchema: z.ZodType; export declare function createWorkspaceInviteLinkRequestBodyToJSON(createWorkspaceInviteLinkRequestBody: CreateWorkspaceInviteLinkRequestBody): string; /** @internal */ export type CreateWorkspaceInviteLinkRequest$Outbound = { id: string; RequestBody?: CreateWorkspaceInviteLinkRequestBody$Outbound | undefined; }; /** @internal */ export declare const CreateWorkspaceInviteLinkRequest$outboundSchema: z.ZodType; export declare function createWorkspaceInviteLinkRequestToJSON(createWorkspaceInviteLinkRequest: CreateWorkspaceInviteLinkRequest): string; //# sourceMappingURL=createworkspaceinvitelink.d.ts.map