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