import type { AreaGroup, AreaGroupPayload } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; type AddAreaGroupInput = { houseId: string; payload: AreaGroupPayload; }; declare const addAreaGroup: (http: HttpClient) => { query: (input: AddAreaGroupInput) => Promise>; }; export default addAreaGroup;