import { OCPP2_0_1 } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class MessageInfo extends Model implements OCPP2_0_1.MessageInfoType {
    static readonly MODEL_NAME: string;
    /**
     * Fields
     */
    databaseId: number;
    stationId: string;
    id: number;
    priority: OCPP2_0_1.MessagePriorityEnumType;
    state?: OCPP2_0_1.MessageStateEnumType | null;
    startDateTime?: string | null;
    endDateTime?: string | null;
    transactionId?: string | null;
    message: OCPP2_0_1.MessageContentType;
    active: boolean;
    /**
     * Relations
     */
    display: OCPP2_0_1.ComponentType;
    displayComponentId?: number | null;
    customData?: OCPP2_0_1.CustomDataType | null;
}
