import React from "react"; import { type VariantProps } from "class-variance-authority"; declare const targetVariants: (props?: ({ size?: "small" | "medium" | "large" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface TargetProps extends Omit, "size">, VariantProps { /** Show hex code text beside the color swatch. */ showHexValue?: boolean; /** The original color prop value. */ color?: string; /** The resolved color value to display. */ colorValue?: string; } declare const Target: React.ForwardRefExoticComponent>; export { Target };