import { WebPlugin } from '@capacitor/core'; import type { NativeGeocoderPlugin, ReverseOptions, ForwardOptions, Address } from './definitions'; export declare class NativeGeocoderWeb extends WebPlugin implements NativeGeocoderPlugin { reverseGeocode(options: ReverseOptions): Promise<{ addresses: Address[]; }>; forwardGeocode(options: ForwardOptions): Promise<{ addresses: Address[]; }>; getPluginVersion(): Promise<{ version: string; }>; }