// @flow import * as React from "react"; export type State = {| contentHeight: number, |}; export type Props = {| +expanded?: boolean, +initialExpanded?: boolean, +children: React.Node, |}; declare export default React.ComponentType;