import React from "react";
interface SparkleNavbarProps {
    /**
     * An array of strings representing the navigation menu items.
     * Each string will be the text for a button.
     * @example ['Home', 'About', 'Contact']
     */
    items: string[];
    /**
     * The color for the active state text shadow, box shadow, and other effects.
     * @example '#1E90FF' (a shade of blue)
     */
    color?: string;
}
/**
 * A reusable navigation menu component with a dynamic, animated active state indicator.
 * All CSS and animation logic are self-contained within this single TSX file.
 *
 * @param {SparkleNavbarProps} props - The component props.
 * @returns {JSX.Element} The rendered navigation menu.
 */
declare const SparkleNavbar: React.FC<SparkleNavbarProps>;
export default SparkleNavbar;
//# sourceMappingURL=sparkle-navbar.d.ts.map