/** Variables exposed to every WhatsApp template. Shared shape so the
 *  in-app editor doesn't have to switch its variable list per type. */
export interface WhatsAppVars {
    visitor_name: string;
    visitor_email: string;
    visitor_mobile: string;
    visitor_id: string;
    visit_date: string;
    visit_time: string;
    visit_notes: string;
    reason_for_visit: string;
    host_name: string;
    host_email: string;
    organization: string;
    pass_url: string;
    qr_code: string;
    approve_url: string;
    reject_url: string;
}
export declare const WHATSAPP_KNOWN_KEYS: ReadonlyArray<keyof WhatsAppVars>;
export declare const WHATSAPP_APPROVER_REQUEST_EXTRA_KEYS: ReadonlyArray<keyof WhatsAppVars>;
/** Sample values used to render the in-app preview. Mirrors the email
 *  sample data so a preview side-by-side feels coherent. */
export declare const WHATSAPP_SAMPLE: WhatsAppVars;
export declare const DEFAULT_WHATSAPP_INVITE: {
    body: string;
};
export declare const DEFAULT_WHATSAPP_CHECK_IN: {
    body: string;
};
export declare const DEFAULT_WHATSAPP_REMINDER: {
    body: string;
};
export declare const DEFAULT_WHATSAPP_APPROVER_REQUEST: {
    body: string;
};
//# sourceMappingURL=whatsappTemplates.d.ts.map