import * as z from "zod/v3"; export type RestoreWorkspaceUserAccessRequest = { /** * The ID of the account */ accountId: string; /** * The ID of the workspace to restore access */ workspaceId: string; /** * The ID of the user to be restored to the workspace */ userId: string; }; /** @internal */ export type RestoreWorkspaceUserAccessRequest$Outbound = { accountId: string; workspaceId: string; userId: string; }; /** @internal */ export declare const RestoreWorkspaceUserAccessRequest$outboundSchema: z.ZodType; export declare function restoreWorkspaceUserAccessRequestToJSON(restoreWorkspaceUserAccessRequest: RestoreWorkspaceUserAccessRequest): string; //# sourceMappingURL=restoreworkspaceuseraccess.d.ts.map