import { type EndpointMetadata } from '../../core/http.js';
import { ErrorResponseSchema } from '../../errors.js';
import { GetPriceHistoryQueryParams, GetPriceHistoryResponse } from './schema.js';
export declare const getPriceHistoryMeta: EndpointMetadata<never, // No Path Params
GetPriceHistoryQueryParams, // Query Params
never, // No Request Body
GetPriceHistoryResponse, // Response Body
'GET', // HTTP Method
ErrorResponseSchema>;
