// @flow import * as React from "react"; import type { StyledComponent } from "styled-components"; export type Props = {| +icon?: React.Node, +title?: React.Node, +description?: React.Node, +external?: boolean, +onClick?: (ev: SyntheticEvent) => void, +isExpandable?: boolean, +isExpanded?: boolean, |}; export type IconRightProps = {| external?: boolean, isExpandable?: boolean, isExpanded?: boolean, |}; declare export var StyledIconRight: StyledComponent; declare export default React.ComponentType;