import * as React from 'react'; interface SkipLinkProps extends React.AnchorHTMLAttributes { targetId?: string; children?: React.ReactNode; } export declare function SkipLink({ targetId, children, className, ...props }: SkipLinkProps): import("react/jsx-runtime").JSX.Element; export {};