import { EventAction, EventType, HtEventProps, RequestData } from '../types';
export declare class HtEvent {
    chat_id?: string;
    type: EventType;
    format_version?: number;
    bot_version?: string;
    flow_version?: string;
    action: EventAction;
    bot_interaction_id?: string;
    user_locale: string;
    user_country: string;
    system_locale: string;
    constructor(event: HtEventProps, requestData: RequestData);
}
