import { AsElementProps, ElementProps } from "../../../types/shared.mjs"; import { PolymorphicComponentProps } from "../../../internal/factory/create-polymorphic-factory.mjs"; import React from "react"; //#region src/components/navigation/back-to-top-link/BackToTopLink.d.ts type BackToTopLinkProps = ElementProps<'a'>; declare const BackToTopLink: ((props: PolymorphicComponentProps) => React.ReactElement) & Omit & Omit, "key" | "as" | keyof React.AnchorHTMLAttributes> & { ref?: any; renderRoot?: (props: any) => any; }) | (BackToTopLinkProps & { as: keyof React.JSX.IntrinsicElements | React.JSXElementConstructor; renderRoot?: (props: Record) => any; })>, never> & Record; //#endregion export { BackToTopLink, BackToTopLinkProps };