import pLimit from 'p-limit'; /** * Converts a string to 32bit integer */ export declare function stringToHash(str: string): number; export declare type StackNext = () => void; export declare type StackFn = (input: T, next: StackNext) => void; export declare function useStack(...fns: Array>): (input: T) => void; export declare function useLimit(concurrency: number): pLimit.Limit;