import { applyMatchGooglePlace } from './apply-match'; import { countGooglePlaces } from './count'; import { createCompanyFromPlace } from './create-company'; import { createLocationFromPlace } from './create-location'; import { exportGooglePlaces } from './export'; import { getGooglePlace } from './get-one'; import { matchPreviewGooglePlace } from './match-preview'; import { queryGooglePlaces } from './query'; import { relinkGooglePlace } from './relink'; import { getGooglePlaceSiblings } from './siblings'; import { statsByCountryGooglePlaces } from './stats-by-country'; import { unlinkGooglePlace } from './unlink'; import { unlinkGooglePlaceLocation } from './unlink-location'; import { updateGooglePlace } from './update'; type ApiDeclaration = { query: typeof queryGooglePlaces; getOne: typeof getGooglePlace; matchPreview: typeof matchPreviewGooglePlace; applyMatch: typeof applyMatchGooglePlace; statsByCountry: typeof statsByCountryGooglePlaces; update: typeof updateGooglePlace; exportGooglePlaces: typeof exportGooglePlaces; count: typeof countGooglePlaces; siblings: typeof getGooglePlaceSiblings; createCompany: typeof createCompanyFromPlace; createLocation: typeof createLocationFromPlace; relink: typeof relinkGooglePlace; unlink: typeof unlinkGooglePlace; unlinkLocation: typeof unlinkGooglePlaceLocation; }; export declare const googlePlacesApiDeclaration: ApiDeclaration; export {};