import { JSX } from 'solid-js'; export interface TextShimmerProps extends JSX.HTMLAttributes { as?: string; duration?: number; spread?: number; children: JSX.Element; } declare function TextShimmer(props: TextShimmerProps): JSX.Element; export { TextShimmer };