import type { ObjectSchema } from '@becomes/purple-cheetah/types'; export declare enum InvitationErrorType { EMAIL = "EMAIL" } export interface InvitationError { type: InvitationErrorType; message: string; } export declare const InvitationErrorSchema: ObjectSchema;