// @flow import * as React from "react"; import type { Translation, Globals } from "../common/common.js.flow"; export type Props = {| initialExpanded?: boolean, expanded?: boolean, label?: Translation, customLabel?: React.Node, children: React.Node, actions?: React.Node, onClick?: (e: SyntheticEvent, state: boolean) => void | Promise, ...Globals, |}; declare export default React.ComponentType;