import { WebPlugin } from '@capacitor/core'; import { GraphhopperJavaPlugin } from './definitions'; export declare class GraphhopperJavaWeb extends WebPlugin implements GraphhopperJavaPlugin { constructor(); echo(options: { value: string; }): Promise<{ value: string; }>; storeContact(options: { value: string; }): Promise<{ value: string; }>; } declare const GraphhopperJava: GraphhopperJavaWeb; export { GraphhopperJava };