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