import { IUtxoGetBlockRes } from "../../types"; import { BlockBase } from "../BlockBase"; export declare abstract class UtxoBlock extends BlockBase { protected get data(): IUtxoGetBlockRes; get number(): number; get blockHash(): string; get stdBlockHash(): string; get previousBlockHash(): string; get stdPreviousBlockHash(): string; /** * Gets the mediantime of a block */ get unixTimestamp(): number; get transactionIds(): string[]; get stdTransactionIds(): string[]; get transactionCount(): number; } //# sourceMappingURL=UtxoBlock.d.ts.map