import BlockStats from '../models/BlockStats'; import type Client from '../Client'; import Block from '../models/Block'; import ResourceList from '../ResourceList'; interface ListParams { cursor?: string; } export default class Blocks { private client; constructor(client: Client); fromHeightOrHash(heightOrHash: number | string): Block; list(params?: ListParams): Promise>; get(heightOrHash: number | string): Promise; getHeight(params?: { maxTime?: string; }): Promise; stats(): Promise; } export {}; //# sourceMappingURL=Blocks.d.ts.map