// @flow import * as React from "react"; import type { StyledComponent } from "styled-components"; export type Props = {| children: React.Node, expanded?: boolean, expandable?: boolean, visible?: boolean, |}; export type State = {| contentHeight: number, |}; declare export var StyledCardSectionContent: StyledComponent; declare export default React.ComponentType;