export declare function hash(s: string): number; /** * Creates a consistent id string suitable for a DOM id * * The id will always come out the same for a given input string, but it * has low collision tolerance. Only use this when you must have a * consistent id. */ export declare function hashid(s: string): string;