// @flow import type { Globals } from "../common/common.js.flow"; export type State = { expanded?: boolean, initialExpanded?: boolean, }; export type Props = {| +title?: string, +description?: React$Node, +icon?: React$Node, +children?: React$Node, +external?: boolean, +href?: string, +onClick?: (e: SyntheticEvent) => void | Promise, expanded?: boolean, ...Globals, |}; declare export default React$ComponentType;