import type React from "react"; import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext"; import { type StyledProps } from "../StyledProps"; interface Props extends React.ComponentPropsWithRef<"a">, StyledProps { disabled?: boolean; variant?: ComponentVariant; color?: string; hoverColor?: string; bgHoverColor?: string; } declare const DropdownLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLAnchorElement>, Props>> & string; export default DropdownLink;