import Enum from '../codec/Enum'; export default class StorageHasher extends Enum { constructor(value?: any); /** * @description Is the enum Blake2_128? */ readonly isBlake2128: boolean; /** * @description Is the enum Blake2_256? */ readonly isBlake2256: boolean; /** * @description Is the enum Twox128? */ readonly isTwox128: boolean; /** * @description Is the enum Twox256? */ readonly isTwox256: boolean; /** * @description Is the enum isTwox64Concat? */ readonly isTwox64Concat: boolean; toJSON(): string; }