import type { Booking } from '../../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../../types/index.ts'; export type ModifyOwnerBookingInput = { houseId: string; period: { check_in_date: string; check_out_date: string; }; }; declare const modifyOwnerBooking: (http: HttpClient) => { query: (input: ModifyOwnerBookingInput) => Promise, undefined, ApiError>>; }; export default modifyOwnerBooking;