UNPKG

524 BTypeScriptView Raw
1import { type HTMLChakraProps, type RecipeProps } from "../../styled-system";
2export interface SkipNavLinkProps extends HTMLChakraProps<"a">, RecipeProps<"skipNavLink"> {
3}
4export declare const fallbackId = "chakra-skip-nav";
5/**
6 * Renders a link that remains hidden until focused to skip to the main content.
7 *
8 * @see Docs https://chakra-ui.com/docs/components/skip-nav
9 */
10export declare const SkipNavLink: import("react").ForwardRefExoticComponent<SkipNavLinkProps & import("react").RefAttributes<HTMLAnchorElement>>;