import { LevelDBDataIndex } from "../generic/LevelDBDataIndex"; import { IindexEntry } from "../../../../indexer"; export declare type Hash = string; export declare type Pubkey = string; export declare class LevelIIndexHashIndexer extends LevelDBDataIndex { onInsert(records: IindexEntry[]): Promise; onRemove(records: IindexEntry[]): Promise; getByHash(hash: Hash): Promise; }