import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { GetPlaceOptions, GetPlaceResponse } from './index.typings.js'; export { Address, AddressLocation, AddressStreetOneOf, GetPlaceRequest, Place, StreetAddress, Subdivision, SubdivisionType, SubdivisionTypeWithLiterals } from './index.typings.js'; declare function getPlace$1(httpClient: HttpClient): GetPlaceSignature; interface GetPlaceSignature { /** * Once you have a search_id from a autocomplete Search, you can request more details about a particular establishment or point of interest by initiating a get place request. */ (searchId: string, options?: GetPlaceOptions): Promise>; } declare const getPlace: MaybeContext & typeof getPlace$1>; export { GetPlaceOptions, GetPlaceResponse, getPlace };