import { ElementProps } from "../../../types/shared.mjs"; import { Component } from "../../../internal/factory/factory.mjs"; //#region src/components/navigation/skip-link/SkipLink.d.ts type SkipLinkProps = ElementProps<'a'>; declare const SkipLink: Component<{ props: SkipLinkProps; ref: HTMLAnchorElement; }>; //#endregion export { SkipLink, SkipLinkProps };