// @flow /* DOCUMENTATION: https://orbit.kiwi/components/listchoice/ */ import * as React from "react"; import type { Globals, Translation } from "../common/common.js.flow"; export type Props = {| ...Globals, +title: Translation, +description?: Translation, +selectable?: boolean, +selected?: boolean, +disabled?: boolean, +icon?: React.Node, +action?: React.Node, +onClick?: ( e: SyntheticEvent | SyntheticKeyboardEvent, ) => void | Promise, |}; declare export default React.ComponentType;