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