import { BasePlugin } from "../base/base.plugin.js"; export declare class KeyChainPlugin extends BasePlugin { constructor(); keys(): Promise; get(key: string): Promise; set(key: string, data: Uint8Array | string): Promise; delete(key: string): Promise; has(key: string): Promise; } export declare const keychainPlugin: KeyChainPlugin; //# sourceMappingURL=keychain.plugin.d.ts.map