import { OCPP2_0_1 } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class VariableCharacteristics extends Model implements OCPP2_0_1.VariableCharacteristicsType {
    static readonly MODEL_NAME: string;
    /**
     * Fields
     */
    unit?: string | null;
    dataType: OCPP2_0_1.DataEnumType;
    minLimit?: number | null;
    maxLimit?: number | null;
    valuesList?: string | null;
    supportsMonitoring: boolean;
    /**
     * Relations
     */
    variable: OCPP2_0_1.VariableType;
    variableId?: number | null;
    customData?: OCPP2_0_1.CustomDataType | null;
}
