import { type EndpointMetadata } from '../../core/http';
import { ErrorResponseSchema } from '../../errors';
import { GetInstrumentsQueryParams, GetInstrumentsResponse, GetInstrumentByCusipPathParams, GetInstrumentByCusipResponse } from './schema';
export declare const getInstrumentsMeta: EndpointMetadata<never, // No Path Params
GetInstrumentsQueryParams, // Query Params
never, // No Request Body
GetInstrumentsResponse, // Response Body
'GET', // HTTP Method
ErrorResponseSchema>;
export declare const getInstrumentByCusipMeta: EndpointMetadata<GetInstrumentByCusipPathParams, // Path Params
never, // No Query Params
never, // No Request Body
GetInstrumentByCusipResponse, // Response Body
'GET', // HTTP Method
ErrorResponseSchema>;
