import type { ContractAGVType } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type ConfirmOwnerContractByIdInput = { contractId: string; contract: { approved_by_owner_at: string; }; owner_general_rental_condition_signed: boolean; }; declare const confirmOwnerContractById: (http: HttpClient) => { query: (input: ConfirmOwnerContractByIdInput) => Promise>; }; export default confirmOwnerContractById;