import { Model } from 'sequelize-typescript';
/**
 * Represents the security information found on a particular charging station.
 */
export declare class ChargingStationSecurityInfo extends Model {
    static readonly MODEL_NAME: string;
    stationId: string;
    publicKeyFileId: string;
}
