// @flow import * as React from "react"; import type { Globals } from "../../common/common.js.flow"; export type Props = {| enabled?: boolean, tabIndex?: string | number, children?: React.Node, lockScrolling?: boolean, renderInPortal?: boolean, labelClose?: React.Node, content: React.Node, onShow?: () => void | Promise, stopPropagation?: boolean, removeUnderlinedText?: boolean, block?: boolean, ...Globals, |}; declare export default React.ComponentType;