import type { Code, StayInformation } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; type IncludesAvailable = 'codes'; export type GetStayInformationIncluded = { codes: Code | Code[]; }; export type GetStayInformationInput = { houseId: string; included?: { include?: IncludesAvailable[]; fields?: Record; }; }; declare const getStayInformation: (http: HttpClient) => { query: (input: GetStayInformationInput) => Promise>; }; export default getStayInformation;