import { SkipLinkPosition } from './exports'; /** * An accessibility utility that renders a visible-on-focus link allowing keyboard users to skip navigation and jump directly to main content. * * Example * ``` * * Skip to main content * * *
* *
* ``` * * @slot - Skip link label text */ export declare class SkipLink { /** Defines skip link position */ position: SkipLinkPosition; render(): any; }