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