import type { ChargingStationSecurityInfoDto, TenantDto } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
/**
 * Represents the security information found on a particular charging station.
 */
export declare class ChargingStationSecurityInfo extends Model implements ChargingStationSecurityInfoDto {
    static readonly MODEL_NAME: string;
    stationId: string;
    publicKeyFileId: string;
    tenantId: number;
    tenant?: TenantDto;
    static setDefaultTenant(instance: ChargingStationSecurityInfo): void;
    constructor(...args: any[]);
}
