import type { Mandate } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type ModifyContractInformationInput = { houseId: string; context: 'company' | 'individual'; formData: unknown; }; declare const modifyContractInformation: (http: HttpClient) => { query: (input: ModifyContractInformationInput) => Promise>; }; export default modifyContractInformation;