import { type ElementType, type ReactNode } from 'react'; type TextShimmerProps = { children: ReactNode; as?: ElementType; speed?: number; className?: string; }; declare const TextShimmer: ({ children, as: Component, speed, className, }: TextShimmerProps) => import("react/jsx-runtime").JSX.Element; export { TextShimmer }; export type { TextShimmerProps };