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