export interface MeetingInviteEmailContext {
    recipientName: string;
    meetingTitle: string;
    companyName?: string | null;
    roomCode: string;
    joinUrl: string;
    passcode?: string;
    scheduledAt?: Date | string | null;
    hostName?: string | null;
    standards?: string | null;
    isRecorded?: boolean;
    expiresAt: Date | string;
    passcodeValidMinutes?: number;
    senderName?: string;
    senderTitle?: string;
    senderPhone?: string;
    senderEmail?: string;
    senderAddress?: string;
    senderWebsite?: string;
}
export declare function buildMeetingInviteEmail(ctx: MeetingInviteEmailContext): string;
export declare function buildMeetingInviteText(ctx: MeetingInviteEmailContext, channel?: 'WHATSAPP' | 'SMS'): string;
