import type { Period } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetPeriodInput = { houseId: string; }; declare const getPeriods: (http: HttpClient) => { query: (input: GetPeriodInput) => Promise[], undefined, ApiError>>; }; export default getPeriods;