import * as z from "zod/v3"; import * as components from "../components/index.js"; export type RevokeWorkspaceUserAccessRequest = { /** * The ID of the account */ accountId: string; /** * The ID of the workspace to revoke access from */ workspaceId: string; /** * The ID of the user to be revoked from the workspace */ userId: string; /** * Optional details. Allows scheduling the revocation for the future */ revokeWorkspaceUserDetails?: components.RevokeWorkspaceUserDetails | undefined; }; /** @internal */ export type RevokeWorkspaceUserAccessRequest$Outbound = { accountId: string; workspaceId: string; userId: string; RevokeWorkspaceUserDetails?: components.RevokeWorkspaceUserDetails$Outbound | undefined; }; /** @internal */ export declare const RevokeWorkspaceUserAccessRequest$outboundSchema: z.ZodType; export declare function revokeWorkspaceUserAccessRequestToJSON(revokeWorkspaceUserAccessRequest: RevokeWorkspaceUserAccessRequest): string; //# sourceMappingURL=revokeworkspaceuseraccess.d.ts.map