declare const hash: (string: any, rounds?: any) => Promise; declare const hashSync: (string: any, rounds?: any) => string; declare const compare: (string: any, hashString: any) => Promise; declare const compareSync: (string: any, hashString: any) => boolean; export { hash, compare, hashSync, compareSync };