import { IconProps } from '../../Icon'; import { AiMarkWithTooltipOrPopoverConfig } from '../../../types/ai-marks'; export type AiMarkInteractiveProps = { config: AiMarkWithTooltipOrPopoverConfig; size: NonNullable; inheritColor: boolean; containerClassName: string; forceAnimate?: boolean; }; export declare const AiMarkInteractive: ({ config, size, inheritColor, containerClassName, forceAnimate, }: AiMarkInteractiveProps) => import("react/jsx-runtime").JSX.Element;