import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetIncomingPaymentTransactionInput = { id: string; }; declare const getIncomingPaymentTransaction: (http: HttpClient) => { query: (input: GetIncomingPaymentTransactionInput) => Promise>; }; export default getIncomingPaymentTransaction;