import { type VariantProps } from "class-variance-authority"; import React from "react"; import { LinkWrapperProps } from "../components/LinkWrapper"; export declare const HOVERABLE_VARIANTS: readonly ["invisible", "primary", "highlight"]; export type HoverableVariantType = (typeof HOVERABLE_VARIANTS)[number]; declare const variantStyle: (props?: ({ variant?: "highlight" | "invisible" | "primary" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface MetaHoverableProps extends React.HTMLAttributes, VariantProps { asChild?: boolean; } export interface HoverableProps extends MetaHoverableProps, Omit { } declare const Hoverable: React.ForwardRefExoticComponent>; export { Hoverable }; //# sourceMappingURL=Hoverable.d.ts.map