import { Model } from 'sequelize-typescript';
export declare class MeterValue extends Model {
    static readonly MODEL_NAME: string;
    transactionEventId?: number | null;
    transactionDatabaseId?: number | null;
    stopTransactionDatabaseId?: number | null;
    sampledValue: [object, ...object[]];
    timestamp: string;
    connectorId?: number;
    customData?: any | null;
}
