import { AWWebView } from 'appworks-js'; import { Observable } from 'rxjs'; export declare class AWWebViewService { AWWebView: AWWebView; constructor(); init(): void; open(url: string, target?: string, options?: string): void; addEventListener(type: string): Observable<{}>; removeEventListener(type: string): Observable<{}>; show(): void; close(): void; executeScript(script: string): Observable<{}>; insertCSS(css: string): Observable<{}>; }