import { BlockDTO } from "../dto/BlockDTO"; import { ConfDTO } from "../dto/ConfDTO"; import { IndexEntry } from "../indexer"; export declare const ALIAS: { ALL_LOCAL: (block: BlockDTO, conf: ConfDTO, index: IndexEntry[]) => Promise; ALL_LOCAL_BUT_POW_AND_SIGNATURE: (block: BlockDTO, conf: ConfDTO, index: IndexEntry[]) => Promise; }; export declare const CHECK: { ASYNC: { ALL_LOCAL: (b: BlockDTO, conf: ConfDTO, index: IndexEntry[], done?: any) => Promise; ALL_LOCAL_BUT_POW: (b: BlockDTO, conf: ConfDTO, index: IndexEntry[], done?: any) => Promise; }; };