import type { SaleInformation, SaleInformationPayload } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type ModifySaleInformationInput = { houseId: string; payload: SaleInformationPayload; isFormData: boolean; }; declare const modifySaleInformation: (http: HttpClient) => { query: (input: ModifySaleInformationInput) => Promise>; }; export default modifySaleInformation;