// @flow /* DOCUMENTATION: https://orbit.kiwi/components/skipnavigation */ import * as React from "react"; type Actions = {| +name?: string, +link?: string, +onClick?: () => {||} | void | Promise, |}; export type MappedOptions = {| +key?: string, +value: string | number, +label?: string, +disabled?: boolean, |}; export type Props = {| actions?: Actions[], feedbackUrl?: string, |}; declare export default React.ComponentType;