// @flow import * as React from "react"; import type { Globals } from "../../common/common.js.flow"; import type { As } from "../../Heading/index.js.flow"; export type Props = {| +title?: React.Node, +titleAs?: As, +description?: React.Node, +children?: React.Node, +expandable?: boolean, +initialExpanded?: boolean, +actions?: React.Node, +expanded?: boolean, +noSeparator?: boolean, +onClick?: () => void | Promise, +onClose?: () => void | Promise, +onExpand?: () => void | Promise, +header?: React.Node, ...Globals, |}; declare export default React.ComponentType;