import { OCPP2_0_1 } from '@citrineos/base';
export declare class InstallRootCertificateRequest {
    stationId: string;
    certificateType: OCPP2_0_1.InstallCertificateUseEnumType;
    tenantId: string;
    callbackUrl?: string;
    fileId?: string;
    constructor(stationId: string, tenantId: string, certificateType: OCPP2_0_1.InstallCertificateUseEnumType, callbackUrl?: string, fileId?: string);
}
