import * as z from "zod/v3"; export type RevokeWorkspaceUserDetails = { /** * The optional date in the future to initiate the revocation. If not specified, the revocation will be immediate */ revocationDate?: Date | null | undefined; }; /** @internal */ export type RevokeWorkspaceUserDetails$Outbound = { revocation_date?: string | null | undefined; }; /** @internal */ export declare const RevokeWorkspaceUserDetails$outboundSchema: z.ZodType; export declare function revokeWorkspaceUserDetailsToJSON(revokeWorkspaceUserDetails: RevokeWorkspaceUserDetails): string; //# sourceMappingURL=revokeworkspaceuserdetails.d.ts.map