import { SecretStorage } from ".."; import { KeyType } from "../model/keytypes"; import { PrivateKey } from "../types"; export declare function encode(privateKey: PrivateKey, keyType: KeyType, passphrase: string, meta: string): Promise; export declare function decode(json: SecretStorage, passphrase: string): Promise;