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