// @flow /* DOCUMENTATION: https://orbit.kiwi/components/navigationlist/ */ import type { Component, Globals } from "../../common/common.js.flow"; export type Props = {| +ariaLabel?: string, +icon?: React$Element, +children?: React$Node, +selectable?: boolean, +selected?: boolean, +href?: string, +external?: boolean, +onClick?: () => void | Promise, +asComponent?: Component, +tabIndex?: string, ...Globals, |}; declare export default React$ComponentType;