Repository URL to install this package:
import { ReactNode } from 'react'; export interface AnchorProps { identifier?: string; } export interface SkipNavProps extends AnchorProps { to?: string; id?: string; children?: ReactNode; }