import { type ElementType, type HTMLAttributes } from 'react'; import { type CssLength } from '../../../utils/css'; type IlluminatedTextProps = Omit, 'children'> & { children?: string; as?: ElementType; ambient?: boolean; animation?: boolean; textColor?: string; highlightStart?: string; highlightEnd?: string; accentColor?: string; accentSize?: CssLength; glowScale?: number; }; declare const IlluminatedText: ({ children, as: Component, ambient, animation, textColor, highlightStart, highlightEnd, accentColor, accentSize, glowScale, className, style, ...props }: IlluminatedTextProps) => import("react/jsx-runtime").JSX.Element; export { IlluminatedText }; export type { IlluminatedTextProps };