// @flow import * as React from "react"; import type { StyledComponent } from "styled-components"; import type { Globals } from "../../common/common.js.flow"; export type Props = {| +id?: string | number, +children?: React.Node, +actions?: React.Node, +expanded?: boolean, +expandable?: boolean, +onExpand?: () => void | Promise, +header?: React.Node, +footer?: React.Node, ...Globals, |}; declare export var StyledAccordionSection: StyledComponent; declare export default React.ComponentType;