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