// @flow /* DOCUMENTATION: https://orbit.kiwi/components/tile/ */ import * as React from "react"; import type { Globals } from "../../common/common.js.flow"; export type State = {| expanded?: boolean, initialExpanded?: boolean, |}; export type Props = {| +title?: React.Node, +description?: React.Node, +icon?: React.Node, +children?: React.Node, +external?: boolean, +href?: string, +onClick?: ( e: SyntheticEvent | SyntheticKeyboardEvent, ) => void | Promise, expanded?: boolean, ...Globals, |}; declare export default React.ComponentType;