import JSONRequest from '../jsonrequest.js'; import { HTTPClient, HTTPClientResponse } from '../../client.js'; import { NodeStatusResponse } from './models/types.js'; export default class StatusAfterBlock extends JSONRequest { private round; constructor(c: HTTPClient, round: number | bigint); path(): string; prepare(response: HTTPClientResponse): NodeStatusResponse; }