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