declare module "@capacitor/core" { interface PluginRegistry { EchoV2Plugin: EchoV2PluginPlugin; } } export interface EchoV2PluginPlugin { echo(): Promise<{ returnValue: string; }>; }