import { ScryptParamsT } from '../key-derivation-functions'; export declare type KeystoreCryptoCipherParamsT = Readonly<{ nonce: string; }>; export declare type KeystoreCryptoT = Readonly<{ cipher: string; cipherparams: KeystoreCryptoCipherParamsT; ciphertext: string; kdf: string; kdfparams: ScryptParamsT; mac: string; }>; export declare type KeystoreT = Readonly<{ memo?: string; crypto: KeystoreCryptoT; id: string; version: number; }>; //# sourceMappingURL=_types.d.ts.map