import type { HexString } from '@polkadot/util/types';
interface Result {
    password: Uint8Array;
    rounds: number;
    salt: Uint8Array;
}
export declare function pbkdf2Encode(passphrase?: HexString | Uint8Array | string, salt?: Uint8Array, rounds?: number, onlyJs?: boolean): Result;
export {};
