import KeyStoreBase from '../keystore/base.js'; import { KeyStore, Config } from '../types.js'; export declare class ECCKeyStore extends KeyStoreBase implements KeyStore { static init(maybeCfg?: Partial): Promise; sign(msg: string, cfg?: Partial): Promise; verify(msg: string, sig: string, publicKey: string, cfg?: Partial): Promise; encrypt(msg: string, publicKey: string, cfg?: Partial): Promise; decrypt(cipherText: string, publicKey: string, cfg?: Partial): Promise; publicExchangeKey(): Promise; publicWriteKey(): Promise; } export default ECCKeyStore;