/** * PopupContainerView.tsx * * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT license. * * Common parent of all components rendered into a popup, web version. */ import * as React from 'react'; import { Types } from '../common/Interfaces'; import { PopupContainerViewBase, PopupContainerViewBaseProps, PopupContainerViewContext } from '../common/PopupContainerViewBase'; export interface PopupContainerViewProps extends PopupContainerViewBaseProps { style: React.CSSProperties; onMouseEnter?: (e: React.MouseEvent) => void; onMouseLeave?: (e: React.MouseEvent) => void; } export declare class PopupContainerView extends PopupContainerViewBase { constructor(props: PopupContainerViewProps, context?: PopupContainerViewContext); render(): JSX.Element; } export default PopupContainerView;