// @flow import * as React from "react"; import type { Globals } from "../common/common.js.flow"; export type Props = {| +onMenuOpen?: () => void | Promise, +onShow?: () => void | Promise, +onHide?: () => void | Promise, +hideOnScroll?: boolean, +children: React.Node, ...Globals, |}; declare export default React.ComponentType;