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