import type { SupportedCurrencies } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type HousePeriodsIdsInput = { currency?: SupportedCurrencies; endDate: string; maxBudget?: string; minBudget?: string; page?: string; sortBy?: string; startDate: string; states?: string; destinationIds?: string[]; housesIds?: string[]; }; export type HousePeriodsIdsResponseData = { validHousePeriodsIds: number[]; invalidHousePeriodsIds: number[]; }; declare const getHousePeriodsIds: (http: HttpClient) => { query: ({ currency, endDate, maxBudget, minBudget, page, sortBy, startDate, states, destinationIds, housesIds, }: HousePeriodsIdsInput) => Promise>; }; export default getHousePeriodsIds;