import { IPlatformCryptographyTools as ICommonCryptographyTools } from '@affinidi/common'; declare type KeyData = { privateKey: string; publicKey: string; keyFormat: 'pem' | 'base58'; }; declare type KeyGenerator = () => Promise; export declare type IPlatformCryptographyTools = ICommonCryptographyTools & { keyGenerators: Record<'rsa' | 'bbs', KeyGenerator>; }; export {};