import { Model } from'sequelize-typescript';
/**
* Represents the security information found on a particular charging station.
*/
export declareclassChargingStationSecurityInfoextendsModel{
staticreadonly MODEL_NAME: string;
stationId: string;
publicKeyFileId: string;
}