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