/** * Convert a string into a hash number. * Adapted from here https://stackoverflow.com/a/8831937/5551941 * @export * @param {string} s * @returns {number} */ export declare function hashString(s: string): number;