import { BoxProps, ChakraComponent } from '@chakra-ui/react'; import { default as React } from 'react'; export interface SkipNavigationProps extends BoxProps { /** The anchor target for the main skip link. The default is "#mainContent". */ target?: string; } /** * SkipNavigation is a component that is used to provide a navigational list of * links. The first link is used to skip to the main content of the page using * the `#mainContent` id, and the second link points to accessibility information * on NYPL.org. These links are visually hidden but can be read by screenreaders. */ export declare const SkipNavigation: ChakraComponent & React.RefAttributes>, React.PropsWithChildren>; export default SkipNavigation;