import { Model } from 'sequelize-typescript';
import { Certificate } from './Certificate.js';
import { OCPP2_0_1, type TenantDto } from '@citrineos/base';
import { ChargingStation } from '../Location/index.js';
export declare class InstallCertificateAttempt extends Model {
    static readonly MODEL_NAME: string;
    stationId: string;
    station?: ChargingStation;
    certificateType: OCPP2_0_1.InstallCertificateUseEnumType;
    certificateId: number;
    certificate?: Certificate;
    status?: OCPP2_0_1.InstallCertificateStatusEnumType | null;
    tenantId: number;
    tenant?: TenantDto;
    static setDefaultTenant(instance: InstallCertificateAttempt): void;
    constructor(...args: any[]);
}
