import type { HttpClient, IncludeType } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type StayInformationInput = { houseId: string | number; included?: IncludeType; }; declare const getStayInformation: (http: HttpClient) => { query: (input: StayInformationInput) => Promise>; }; export default getStayInformation;