import type { PaymentTransactions } from '../../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetPaymentTransactionByContractIdInput = { contractId: string; include?: IncludeType; filter?: FilterType; pagination?: { per: string; page: string; }; }; declare const getPaymentTransactionByContractId: (http: HttpClient) => { query: (input: GetPaymentTransactionByContractIdInput) => Promise>; }; export default getPaymentTransactionByContractId;