// module.d.ts
import * as types from 'constants';
declare module '@vendor/module' {
function createComplex(
password: string,
encryptOptions: types.KDF_ENCRYPT_OPTIONS
): Promise<any>;
}
// constants.d.ts
export type KDF_ENCRYPT_OPTIONS = {
kdf: string,
n: number,
};