import { OCPP2_0_1 } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class InstalledCertificate extends Model implements OCPP2_0_1.CertificateHashDataType {
    static readonly MODEL_NAME: string;
    stationId: string;
    hashAlgorithm: OCPP2_0_1.HashAlgorithmEnumType;
    issuerNameHash: string;
    issuerKeyHash: string;
    serialNumber: string;
    certificateType: OCPP2_0_1.GetCertificateIdUseEnumType;
}
