// @flow import * as React from "react"; import type { As } from "../../../Heading"; export type Props = {| +description?: React.Node, +icon?: React.Node, +actions?: React.Node, +onClose?: () => void | Promise, +title?: React.Node, +titleAs?: As, +isSection?: boolean, +dataA11ySection?: string, +expandable?: boolean, +expanded?: boolean, +header?: React.Node, |}; declare export default React.ComponentType;