import { type CSSProperties } from 'react'; export type LoadingEllipseTextProps = { text?: string; label?: string; size?: number | string; duration?: number; reversed?: boolean; paused?: boolean; repeat?: number; separator?: string; path?: string; viewBox?: string; rotation?: number; fontSize?: number | string; fontWeight?: CSSProperties['fontWeight']; letterSpacing?: number | string; className?: string; style?: CSSProperties; }; declare const LoadingEllipseText: ({ text, label, size, duration, reversed, paused, repeat, separator, path, viewBox, rotation, fontSize, fontWeight, letterSpacing, className, style, }: LoadingEllipseTextProps) => import("react/jsx-runtime").JSX.Element; export { LoadingEllipseText };