import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetBookingsByHouseIdInput = { houseId: string; startAt: string; endAt: string; privateToken?: string; }; export type GetBookingsByHouseIdResponse = { id: string; checkInDate: string; checkOutDate: string; checkInTime: number; checkOutTime: number; type: string; }; declare const getBookingsByHouseId: (http: HttpClient) => { query: (input: GetBookingsByHouseIdInput) => Promise>; }; export default getBookingsByHouseId;