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 GetContractsByIdInput = { contractId: string; type: string; filters?: FilterType; includes?: IncludeType; }; declare const getContractsById: (http: HttpClient) => { query: (input: GetContractsByIdInput) => Promise>; }; export default getContractsById;