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