import type { Contract } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetContractByIdOldInput = { houseId: string; contractId: string; }; declare const getContractById: (http: HttpClient) => { query: (input: GetContractByIdOldInput) => Promise, undefined, ApiError>>; }; export default getContractById;