import type { PayOut } from '../../../../../../entities/index.ts'; import type { FilterType, HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetPayOutsInput = { paymentTransactionId: string; filter?: FilterType; }; declare const getPayOuts: (http: HttpClient) => { query: (input: GetPayOutsInput) => Promise>; }; export default getPayOuts;