import { KeyPair } from '../types'; export declare class CryptoService { static generateKeyPair(): Promise; static getPublicKeyFromPrivate(privateKey: Uint8Array): Promise; static sign(message: Uint8Array, privateKey: Uint8Array): Promise; static verify(signature: Uint8Array, message: Uint8Array, publicKey: Uint8Array): Promise; static bytesToHex(bytes: Uint8Array): string; static hexToBytes(hex: string): Uint8Array; } //# sourceMappingURL=crypto-browser.d.ts.map