import type { ContractAGVIncludedType, ContractAGVType } from '../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetOwnerContractByIdInput = { contractId: string; type: string; filters?: FilterType; includes?: IncludeType; }; declare const getOwnerContractById: (http: HttpClient) => { query: (input: GetOwnerContractByIdInput) => Promise>; }; export default getOwnerContractById;