import type { Booking } from '../../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type BookingInput = { houseId: string; paginate?: { per: string; page: string; }; included: IncludeType; filters: FilterType; }; declare const getBookings: (http: HttpClient) => { query: (input: BookingInput) => Promise[], Included, ApiError>>; }; export default getBookings;