export interface SkipToContentProps { /** * A CSS selector that identifies the element to focus when the skip link is activated. * @default 'main:first-of-type' */ selector?: string; } export declare const SkipToContent: ({ selector, }: SkipToContentProps) => import("react/jsx-runtime").JSX.Element;