import { Key } from "../Types"; export declare class KeyStore { private _keys; private _encryptionKeyId; setKeys(keys: Key[]): void; getKey(keyId: string): Promise; hasKey(keyId: string): boolean; getEncriptionKey(): Promise; getEncryptionKeyId(): string; private assertKeyBytes; }