/// import { ComponentProps, ExcludedProps } from "@vitality-ds/system"; import { Appearances } from "../Button/types"; import { BaseLink, BaseLinkButton } from "./styled"; export declare type LinkProps = ExcludedProps & ComponentProps & { /** * The URL that the link points to. */ href: string; children: React.ReactChild; }; export declare type LinkButtonProps = ExcludedProps & Omit, "color" | "variant"> & { /** * The visual appearance of the component. */ appearance?: keyof Appearances; };