import * as React from 'react'; import { ElementType } from 'react'; import * as react_jsx_runtime from 'react/jsx-runtime'; interface TextShimmerProps { children: string; as?: ElementType; className?: string; duration?: number; spread?: number; } declare const Shimmer: React.MemoExoticComponent<({ children, as: Component, className, duration, spread, }: TextShimmerProps) => react_jsx_runtime.JSX.Element>; export { Shimmer, type TextShimmerProps };