/// /** * A simple MD5 number hash from a string * * This is not meant for any production or cryptographic use just a * simple way to hash a string for test or display purposes */ declare function hashToNumber(value: string): number; /** * A simple MD5 hash from a string * * This is not meant for any production or cryptographic use just a * simple way to hash a string for test or display purposes */ declare function hash(value: string): Buffer; export declare const StringUtils: { hash: typeof hash; hashToNumber: typeof hashToNumber; getByteLength: (value: string, encoding?: BufferEncoding) => number; sanitizeString: (s: string) => string; }; export {}; //# sourceMappingURL=string.d.ts.map