export interface IOptions { serialize?: boolean; withPrefix?: boolean; } declare const hash: (value_: any, options_?: IOptions) => string; export default hash;