export interface IV2GCertificateAuthorityClient {
    getSignedCertificate(csrString: string): Promise<string>;
    getCACertificates(): Promise<string>;
    getSignedContractData(certificateInstallationReq: string, xsdMsgDefNamespace: string): Promise<string>;
    getRootCertificates(): Promise<string[]>;
}
export interface IChargingStationCertificateAuthorityClient {
    getRootCACertificate(): Promise<string>;
    getCertificateChain(csrString: string): Promise<string>;
    signCertificateByExternalCA(csrString: string): Promise<string>;
    updateCertificateChainKeyMap(serverId: string, certificateChain: string, privateKey: string): void;
}
