import { RaribleProtocolMcpCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { APIError } from "../models/errors/apierror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.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"; /** * Get historical data of collection volume (total sales worth) for charting purposes * * @remarks * Given a time period and the desired number of points, returns points which represent total worth of collection sales in the interval after that point. The last point always has no value. */ export declare function chartsGetVolumeChart(client: RaribleProtocolMcpCore, request: operations.GetVolumeChartRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=chartsGetVolumeChart.d.ts.map