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