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