import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Scope } from "./scope.js"; import { UserRole } from "./userrole.js"; export type PendingOrgInviteScopes = UserRole | Array; export type PendingOrgInvite = { scopes: UserRole | Array; createdAt: Date; invitedBy: string; /** * A user's email. */ userEmail: string; /** * System generated unique identifier for an organization. Not guaranteed to have a specific format. */ orgId: string; }; /** @internal */ export declare const PendingOrgInviteScopes$inboundSchema: z.ZodType; export declare function pendingOrgInviteScopesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PendingOrgInvite$inboundSchema: z.ZodType; export declare function pendingOrgInviteFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pendingorginvite.d.ts.map