import { IcrcmcpCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { IcrcmcpError } from "../models/errors/icrcmcperror.js"; import * as errors from "../models/errors/index.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as models from "../models/index.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * List blocks * * @remarks * This endpoint returns blocks, the total blocks, and the max * block index. The max block index is used to keep track of the * location in the dataset for pagination purposes. * * ### How is data retrieved for this endpoint? * * Values from the endpoint are retrieved by scraping the blocks from the * ledger canister (and associated archive canisters). */ export declare function blocksListBlocksApiV1LedgersLedgerCanisterIdBlocksGet(client: IcrcmcpCore, request: operations.ListBlocksApiV1LedgersLedgerCanisterIdBlocksGetRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=blocksListBlocksApiV1LedgersLedgerCanisterIdBlocksGet.d.ts.map