import type { PaymentTransactions } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type ModifyTransactionInput = { contractId: string; ptId: string; payment_transaction: { amount: number; }; }; declare const modifyPaymentTransaction: (http: HttpClient) => { query: (input: ModifyTransactionInput) => Promise>; }; export default modifyPaymentTransaction;