import { bytes } from "../../../types"; import { IScryptModuleParams } from "./types"; export declare const DefaultScryptParams: Partial; export declare class ScryptModuleParams implements IScryptModuleParams { readonly salt: bytes; readonly dklen: number; readonly n: number; readonly r: number; readonly p: number; constructor(opts: Partial); toJSON(): string; toObject(): object; }