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