/// import * as React from 'react'; export interface IFocusTrapZoneDialogInPanelExampleState { hideDialog: boolean; showPanel: boolean; } export default class FocusTrapDialogInPanelExample extends React.Component<{}, IFocusTrapZoneDialogInPanelExampleState> { constructor(props: {}); render(): JSX.Element; private _showDialog; private _closeDialog; private _onClosePanel; private _onShowPanel; }