declare module "@capacitor/core" { interface PluginRegistry { NativeViewsPlugin: NativeViewsPluginPlugin; } } export interface NativeViewsPluginPlugin { echo(options: { value: string; }): Promise<{ value: string; }>; showScreen(): Promise; }