import { OCPP2_0_1 } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class EventData extends Model implements OCPP2_0_1.EventDataType {
    static readonly MODEL_NAME: string;
    /**
     * Fields
     */
    stationId: string;
    eventId: number;
    trigger: OCPP2_0_1.EventTriggerEnumType;
    cause?: number | null;
    timestamp: string;
    actualValue: string;
    techCode?: string | null;
    techInfo?: string | null;
    cleared?: boolean | null;
    transactionId?: string | null;
    variableMonitoringId?: number | null;
    eventNotificationType: OCPP2_0_1.EventNotificationEnumType;
    /**
     * Relations
     */
    variable: OCPP2_0_1.VariableType;
    variableId?: number;
    component: OCPP2_0_1.ComponentType;
    componentId?: number;
    customData?: OCPP2_0_1.CustomDataType | null;
}
