import { OCPP2_0_1 } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
import { VariableAttribute } from './VariableAttribute';
export declare class VariableStatus extends Model {
    static readonly MODEL_NAME: string;
    value: string;
    status: string;
    statusInfo?: OCPP2_0_1.StatusInfoType | null;
    /**
     * Relations
     */
    variable: VariableAttribute;
    variableAttributeId?: number | null;
    customData?: OCPP2_0_1.CustomDataType | null;
}
