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