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