// @flow import * as React from "react"; import type { Globals, Translation } from "../common/common.js.flow"; export type OnClose = () => void | Promise; export type Position = "left" | "right"; export type Props = {| +actions?: React.Node, +children: React.Node, +lockScrolling?: boolean, +noPadding?: boolean, +fixedHeader?: boolean, +onClose?: OnClose, +position?: Position, +shown: boolean, +suppressed?: boolean, +title?: Translation, +width?: string, ...Globals, |}; declare export default React.ComponentType;