/** @jsx jsx */ import { FC } from 'react'; import { LinkProps } from 'theme-ui'; export interface SkiLinksItemOwnProps { /** * target's id property, without the # char */ target: string; /** * text message to be displayed */ text: string; } export declare type SkipLinksItemProps = SkiLinksItemOwnProps & LinkProps; /** * single skip link anchor item */ export declare const SkiLinksItem: FC; export interface SkipLinksProps { items: SkipLinksItemProps[]; } /** * list of anchor elements to skip to * */ export declare const SkipLinks: FC;