import type { HttpClient } from '../../../../services/index.ts'; import type { ApiError, Response } from '../../../types/index.ts'; export type HouseValidPeriodInput = { houseId: string; privateToken?: string; }; declare const getHouseNextValidPeriod: (http: HttpClient) => { query: (input: HouseValidPeriodInput) => Promise>; }; export default getHouseNextValidPeriod;