import type { Area } from '../../../../../../../entities/index.ts'; import type { FilterType, HttpClient } from '../../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../../types/index.ts'; type GetAreasInput = { houseId: string; areaGroupId: string; included?: { filter?: FilterType; pagination: { per: string; page: string; }; }; }; declare const getAreas: (http: HttpClient) => { query: (input: GetAreasInput) => Promise>; }; export default getAreas;