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