import type { SchemaOf } from '../helpers'; import { Joi } from '../helpers'; export interface IInvitation { id: string; hasCheckedIn: boolean; checkInTime?: number; organisationId: string; staffId: string; isValidated: boolean; startsAt: number; endsAt: number; attendeeNames: string[]; } export declare const invitationSchemaMap: SchemaOf; export declare const invitationSchema: Joi.ObjectSchema;