export declare enum OrientationEnum { Landscape = "Landscape", Portrait = "Portrait" } export interface WebViewErrorInfo { errorCode: string; errorMsg: string; } export interface WebViewState { active: boolean; orientation: OrientationEnum; minimized: boolean; }