/// <reference types="react" />
import { BaseComponent, BaseProps, BaseState } from "../shared";
export interface WebViewProps extends BaseProps {
    innerRef?: (ref: any) => void;
}
export declare type WebViewState = BaseState;
export declare class WebView extends BaseComponent<WebViewProps, WebViewState> {
    static readonly defaultProps: WebViewProps;
    constructor(props: any);
    private handleRef;
    render(): JSX.Element;
}
export default WebView;
