import type { ComponentPropsWithoutRef, ElementType, PropsWithChildren } from "react"; /** * Source for the typing of the `as` prop: https://stackoverflow.com/a/66568474 */ type Props = PropsWithChildren<{ /** * Provide a custom component tag name to render instead of the default `a` tag. * * @default "a" * @example "button" */ as?: E; }>; /** * A bare-bones wrapper around an tag, containing only our preferred styling. This is component * can be used for any link and not just text links. */ export declare function Link(props: Props & Omit, keyof Props>): import("react").JSX.Element; export {};