/** * Props for the AiMarkIconAnimated component * @property {boolean} [animate] - Whether to trigger animations (on hover or focus) * @property {number} [size] - Size of the icon in pixels * @property {boolean} [inheritColor] - Whether to inherit color from parent instead of using gradient * @property {boolean} [spin] - Whether to enable the rotation animation in addition to the morph pulse */ interface AiMarkIconAnimatedProps { animate?: boolean; size?: number; inheritColor?: boolean; spin?: boolean; } /** * AiMarkIconAnimated renders two animated Atlas AI star icons with rotation and morph effects. * * Features: * - Displays two stars in different sizes positioned in a composition * - Animates morphing on hover * - Supports rotation animation via spin prop * - Supports gradient or inherited color * - Automatically respects reduced motion preferences * - Configurable size * - Unique gradient IDs prevent conflicts when multiple icons render * * @example * */ export declare const AiMarkIconAnimated: ({ animate, size, inheritColor, spin, }: AiMarkIconAnimatedProps) => import("react/jsx-runtime").JSX.Element; export {};