import { AbstractController } from "./AbstractController"; import { HttpSources, HttpTransaction, HttpTxHistory, HttpTxPending } from "../dtos"; export declare class TransactionBinding extends AbstractController { parseTransaction(req: any): Promise; getSources(req: any): Promise; getByHash(req: any): Promise; getHistory(req: any): Promise; getHistoryBetweenBlocks(req: any): Promise; getHistoryBetweenTimes(req: any): Promise; getPendingForPubkey(req: any): Promise; getPending(): Promise; private getFilteredHistory; }