import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetPayOutInput = { id: string; }; declare const getPayOut: (http: HttpClient) => { query: (input: GetPayOutInput) => Promise>; }; export default getPayOut;