import { type EndpointMetadata } from '../../core/http';
import { ErrorResponseSchema } from '../../errors';
import { GetTransactionsPathParams, GetTransactionsQueryParams, GetTransactionsResponse, GetTransactionByIdPathParams, GetTransactionByIdResponse } from './schema';
export declare const getTransactionsMeta: EndpointMetadata<GetTransactionsPathParams, GetTransactionsQueryParams, never, GetTransactionsResponse, 'GET', ErrorResponseSchema>;
export declare const getTransactionByIdMeta: EndpointMetadata<GetTransactionByIdPathParams, never, never, GetTransactionByIdResponse, 'GET', ErrorResponseSchema>;
