declare module "@capacitor/core" { interface PluginRegistry { GraphhopperJava: GraphhopperJavaPlugin; } } export interface GraphhopperJavaPlugin { echo(options: { value: string; }): Promise<{ value: string; }>; storeContact(options: { value: string; }): Promise<{ value: string; }>; }