// @flow import type { ReactComponentStyled } from "styled-components"; import type { Globals } from "../../common/common.js.flow"; export type Props = {| +title?: React$Node, +icon?: React$Node, +description?: React$Node, +children?: React$Node, +expandable?: boolean, +initialExpanded?: boolean, +actions?: React$Node, +expanded?: boolean, +noSeparator?: boolean, +onClose?: () => void | Promise, +onExpand?: () => void | Promise, +header?: React$Node, ...Globals, |}; declare export var StyledCardSection: ReactComponentStyled; declare export default React$ComponentType;