import type { Place } from '../../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../../types/index.ts'; export type AddDistanceInput = { houseId: string; placeId: string; params: { [key: string]: string; }; }; declare const addDistance: (http: HttpClient) => { query: (input: AddDistanceInput) => Promise>; }; export default addDistance;