import JSONRequest from '../jsonrequest.js'; import { HTTPClient, HTTPClientResponse } from '../../client.js'; export default class SetBlockOffsetTimestamp extends JSONRequest { private offset; constructor(c: HTTPClient, offset: number | bigint); path(): string; protected executeRequest(headers?: Record, customOptions?: Record): Promise; prepare(_response: HTTPClientResponse): void; }