import type { ContractAttributes, ExpectedPayOut } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; type IncludesAvailable = 'contract'; type GetExpectedPayOutByIdInput = { expectedPayOutId: string; included?: { include?: IncludesAvailable[]; fields?: Record; }; }; export type GetExpectedPayOutByIdIncluded = { contracts: ContractAttributes; }; declare const getExpectedPayOut: (http: HttpClient) => { query: (input: GetExpectedPayOutByIdInput) => Promise>; }; export default getExpectedPayOut;