import { Model } from 'sequelize-typescript';
import { ChargingStation } from './ChargingStation';
export declare class StatusNotification extends Model {
    static readonly MODEL_NAME: string;
    stationId: string;
    chargingStation: ChargingStation;
    timestamp?: string | null;
    connectorStatus: string;
    evseId?: number | null;
    connectorId: number;
    errorCode?: string | null;
    info?: string | null;
    vendorId?: string | null;
    vendorErrorCode?: string | null;
    customData?: object | null;
}
