/// import { SafeheronCoSignerConfig } from '../config'; import { RSA } from '../utils/rsa'; import { AES } from '../utils/aes'; import { CoSignerCallBack, CoSignerRequestV3, CoSignerResponse, CoSignerResponseV3, CoSignerResponseWithNewCryptoType } from '../model/BaseModel'; export declare class CoSignerConverter { config: SafeheronCoSignerConfig; rsa: RSA; aes: AES; constructor(config: SafeheronCoSignerConfig); convertCoSignerResponse(data: any): CoSignerResponse; convertCoSignerResponseWithNewCryptoType(data: any): CoSignerResponseWithNewCryptoType; responseV3convert(data: any): CoSignerResponseV3; requestV3convert(data: CoSignerRequestV3): Buffer; convertCoSignerCallBack(data: CoSignerCallBack): string; }