import { WebViewExtBase } from './index.common'; export * from './index.common'; export declare class AWebView extends WebViewExtBase { zoomIn(): boolean; zoomOut(): boolean; zoomBy(zoomFactor: number): void; nativeViewProtected: WKWebView; static supportXLocalScheme: boolean; protected wkWebViewConfiguration: WKWebViewConfiguration; protected wkNavigationDelegate: WKNavigationDelegateNotaImpl; protected wkUIDelegate: WKUIDelegateNotaImpl; protected wkCustomUrlSchemeHandler: CustomUrlSchemeHandler | void; protected wkUserContentController: WKUserContentController; protected wkUserScriptInjectWebViewBridge?: WKUserScript; protected wkUserScriptViewPortCode: Promise | null; protected wkNamedUserScripts: { resourceName: string; wkUserScript: WKUserScript; }[]; readonly supportXLocalScheme: boolean; viewPortSize: { initialScale: number; }; private limitsNavigationsToAppBoundDomains; private allowsInlineMediaPlayback; private mediaTypesRequiringUser; createNativeView(): WKWebView; initNativeView(): void; disposeNativeView(): void; protected injectWebViewBridge(): Promise; protected injectViewPortMeta(): Promise; executeJavaScript(scriptCode: string, stringifyResult?: boolean): Promise; onLoaded(): void; onUnloaded(): void; stopLoading(): void; _loadUrl(src: string): void; _loadData(content: string): void; get canGoBack(): boolean; get canGoForward(): boolean; goBack(): void; goForward(): void; reload(): void; _webAlert(message: string, callback: () => void): boolean; _webConfirm(message: string, callback: (response: boolean | null) => void): boolean; _webPrompt(message: string, defaultText: string, callback: (response: string | null) => void): boolean; registerLocalResource(resourceName: string, path: string): void; unregisterLocalResource(resourceName: string): void; getRegisteredLocalResource(resourceName: string): string; getTitle(): Promise; autoLoadStyleSheetFile(resourceName: string, path: string, insertBefore?: boolean): Promise; removeAutoLoadStyleSheetFile(resourceName: string): void; autoLoadJavaScriptFile(resourceName: string, path: string): Promise; removeAutoLoadJavaScriptFile(resourceName: string): void; protected updateScrollBarVisibility(value: any): void; _onOrientationChanged(): void; /** * iOS11+ * * Sets up loading WKUserScripts * * @param autoInjectJSBridge If true viewport-code, bridge-code and named scripts will be loaded, if false only viewport-code */ protected loadWKUserScripts(autoInjectJSBridge?: boolean): void; /** * iOS11+ * * Remove a named WKUserScript */ protected removeNamedWKUserScript(resourceName: string): void; protected resetViewPortCode(): Promise; protected registerLocalResourceForNative(resourceName: string, filepath: string): void; protected unregisterLocalResourceForNative(resourceName: string): void; protected getRegisteredLocalResourceFromNative(resourceName: string): string; protected makeWKUserScriptPromise(scriptCodePromise: Promise): Promise; protected addUserScriptFromPromise(userScriptPromise: Promise): Promise; protected addUserScript(userScript: WKUserScript | null): void; /** * iOS11+ * * Add/replace a named WKUserScript. * These scripts will be injected when a new document is loaded. */ protected addNamedWKUserScript(resourceName: string, scriptCode: string): void; /** * iOS11+ * * Factory function for creating a WKUserScript instance. */ protected createWkUserScript(source: string): WKUserScript; } export declare class WKNavigationDelegateNotaImpl extends NSObject implements WKNavigationDelegate { static ObjCProtocols: { prototype: WKNavigationDelegate; }[]; static initWithOwner(owner: WeakRef): WKNavigationDelegateNotaImpl; private owner; webViewDecidePolicyForNavigationActionDecisionHandler(webView: WKWebView, navigationAction: WKNavigationAction, decisionHandler: (policy: WKNavigationActionPolicy) => void): void; webViewDidStartProvisionalNavigation(webView: WKWebView, navigation: WKNavigation): void; webViewDidFinishNavigation(webView: WKWebView, navigation: WKNavigation): void; webViewDidFailNavigationWithError(webView: WKWebView, navigation: WKNavigation, error: NSError): void; webViewDidFailProvisionalNavigationWithError(webView: WKWebView, navigation: WKNavigation, error: NSError): void; } export declare class WKScriptMessageHandlerNotaImpl extends NSObject implements WKScriptMessageHandler { static ObjCProtocols: { prototype: WKScriptMessageHandler; }[]; private owner; static initWithOwner(owner: WeakRef): WKScriptMessageHandlerNotaImpl; userContentControllerDidReceiveScriptMessage(userContentController: WKUserContentController, webViewMessage: WKScriptMessage): void; } export declare class WKUIDelegateNotaImpl extends NSObject implements WKUIDelegate { static ObjCProtocols: { prototype: WKUIDelegate; }[]; owner: WeakRef; static initWithOwner(owner: WeakRef): WKUIDelegateNotaImpl; /** * Handle alerts from the webview */ webViewRunJavaScriptAlertPanelWithMessageInitiatedByFrameCompletionHandler(webView: WKWebView, message: string, frame: WKFrameInfo, completionHandler: () => void): void; /** * Handle confirm dialogs from the webview */ webViewRunJavaScriptConfirmPanelWithMessageInitiatedByFrameCompletionHandler(webView: WKWebView, message: string, frame: WKFrameInfo, completionHandler: (confirmed: boolean) => void): void; /** * Handle prompt dialogs from the webview */ webViewRunJavaScriptTextInputPanelWithPromptDefaultTextInitiatedByFrameCompletionHandler(webView: WKWebView, message: string, defaultText: string, frame: WKFrameInfo, completionHandler: (response: string) => void): void; webViewCreateWebViewWithConfigurationForNavigationActionWindowFeatures(webView: WKWebView, configuration: WKWebViewConfiguration, navigationAction: WKNavigationAction, windowFeatures: WKWindowFeatures): WKWebView; webViewRequestDeviceOrientationAndMotionPermissionForOriginInitiatedByFrameDecisionHandler?(webView: WKWebView, origin: WKSecurityOrigin, frame: WKFrameInfo, decisionHandler: (p1: WKPermissionDecision) => void): Promise; webViewRequestMediaCapturePermissionForOriginInitiatedByFrameTypeDecisionHandler?(webView: WKWebView, origin: WKSecurityOrigin, frame: WKFrameInfo, type: WKMediaCaptureType, decisionHandler: (p1: WKPermissionDecision) => void): Promise; }