declare module "@capacitor/core" { interface PluginRegistry { Neptune: NeptunePlugin; } } export interface NeptunePlugin { magRead(options: { value: string; }): Promise<{ value: any; }>; magOpen(options: { value: string; }): Promise<{ value: any; }>; magClose(options: { value: string; }): Promise<{ value: any; }>; magReset(options: { value: string; }): Promise<{ value: any; }>; magIsSwiped(options: { value: boolean; }): Promise<{ value: any; }>; getPinBlock(options: { value: string; }): Promise<{ value: any; }>; setKey(options: { value: string; }): Promise<{ value: any; }>; print(options: { value: string; }): Promise<{ value: any; }>; pagePrint(options: { value: string; }): Promise<{ value: any; }>; sysTermInfo(options: { value: string; }): Promise<{ value: any; }>; sysBaseInfo(options: { value: string; }): Promise<{ value: any; }>; sysBeep(options: { value: string; }): Promise<{ value: any; }>; sysReboot(options: { value: string; }): Promise<{ value: any; }>; sysShutdown(options: { value: string; }): Promise<{ value: any; }>; isNavigationBarVisible(options: { value: string; }): Promise<{ value: any; }>; isNavigationBarEnabled(options: { value: string; }): Promise<{ value: any; }>; sysShowNavigationBar(options: { value: string; }): Promise<{ value: any; }>; isStatusBarVisible(options: { value: string; }): Promise<{ value: any; }>; isStatusBarEnabled(options: { value: string; }): Promise<{ value: any; }>; sysShowNavigationBar(options: { value: string; }): Promise<{ value: any; }>; }