/** * Generate a simple short hash for a given string * This is not cryptographically secure in any way, and has a high chance of collision */ export declare function getSimpleHash(str: string): string;