import { IXrpGetBlockRes } from "../../types/xrpTypes"; import { BlockBase } from "../BlockBase"; export declare class XrpBlock extends BlockBase { protected get data(): IXrpGetBlockRes; get number(): number; get blockHash(): string; get stdBlockHash(): string; get previousBlockHash(): string; get stdPreviousBlockHash(): string; /** * Gets the close_time of a block converted to unix time */ get unixTimestamp(): number; get transactionIds(): string[]; get stdTransactionIds(): string[]; get transactionCount(): number; get isValid(): boolean; } //# sourceMappingURL=XrpBlock.d.ts.map