import { OCPP2_0_1 } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class SecurityEvent extends Model implements OCPP2_0_1.SecurityEventNotificationRequest {
    static readonly MODEL_NAME: string;
    /**
     * Fields
     */
    stationId: string;
    type: string;
    timestamp: string;
    techInfo?: string | null;
    customData?: OCPP2_0_1.CustomDataType | null;
}
