/** * index.js */ export declare const compute: (master: Uint8Array, hash?: import("./params").HashTypes, length?: number, info?: string, salt?: Uint8Array | null) => Promise<{ key: Uint8Array; salt: Uint8Array; }>; export declare const nistConcatKdf: (sharedSecret: Uint8Array, otherInfoBytes: Uint8Array, keyDataLen?: number, hash?: import("./params").HashTypes) => Promise; declare const _default: { compute: (master: Uint8Array, hash?: import("./params").HashTypes, length?: number, info?: string, salt?: Uint8Array | null) => Promise<{ key: Uint8Array; salt: Uint8Array; }>; nistConcatKdf: (sharedSecret: Uint8Array, otherInfoBytes: Uint8Array, keyDataLen?: number, hash?: import("./params").HashTypes) => Promise; }; export default _default;