/**
* ViewBase.tsx
*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT license.
*
* A base class for the Web-specific implementation of the cross-platform View abstraction.
*/
///
, S, C extends RX.View | RX.ScrollView> extends RX.ViewBase
{
private static _viewCheckingTimer;
private static _isResizeHandlerInstalled;
private static _viewCheckingList;
private static _appActivationState;
abstract render(): JSX.Element;
protected abstract _getContainer(): HTMLElement | null;
protected _isMounted: boolean;
private _isPopupDisplayed;
static setActivationState(newState: RX.Types.AppActivationState): void;
UNSAFE_componentWillReceiveProps(nextProps: RX.Types.ViewPropsShared