import { OCPP2_0_1 } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class VariableMonitoring extends Model implements OCPP2_0_1.VariableMonitoringType {
    static readonly MODEL_NAME: string;
    /**
     * Fields
     */
    databaseId: number;
    stationId: string;
    id: number;
    transaction: boolean;
    value: number;
    type: OCPP2_0_1.MonitorEnumType;
    severity: number;
    /**
     * Relations
     */
    variable: OCPP2_0_1.VariableType;
    variableId?: number | null;
    component: OCPP2_0_1.ComponentType;
    componentId?: number | null;
    customData?: OCPP2_0_1.CustomDataType | null;
}
