/** * @license * Copyright 2014 Travis Webb * SPDX-License-Identifier: MIT */ /** * Perform a FNV-1A 64-bit hash of the given string (as UTF-16 code units), and * return a hexadecimal digest (left zero padded to 16 characters). * * @see {@link http://tools.ietf.org/html/draft-eastlake-fnv-06} */ export declare function fnv1a64(str: string): string; //# sourceMappingURL=fnv1a64.d.ts.map