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