import type { ContractFormatted, GetContractByTypeIncluded } from '../../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetHouseContractInput = { houseId: string; filters?: FilterType; includes?: IncludeType; pagination?: { per: string; page: string; }; }; declare const getHouseContracts: (http: HttpClient) => { query: (input: GetHouseContractInput) => Promise>; }; export default getHouseContracts;