import { ObjectSchema } from '@becomes/purple-cheetah/types'; export interface InvitationCreateData { email: string; } export declare const InvitationCreateDataSchema: ObjectSchema; export interface InvitationVerifyData { invitationId: string; otp: string; fullName: string; password: string; } export declare const InvitationVerifyDataSchema: ObjectSchema; export declare const InvitationController: import("@becomes/purple-cheetah/types").Controller;