import { type ElementType } from 'react'; type TextSwirlProps = { children?: string; as?: ElementType; className?: string; layers?: number; layerGap?: number; duration?: number; fontSize?: number | string; color?: string; backgroundColor?: string; blur?: number | string; contrast?: number; }; declare const TextSwirl: ({ children, as: Component, className, layers, layerGap, duration, fontSize, color, backgroundColor, blur, contrast, }: TextSwirlProps) => import("react/jsx-runtime").JSX.Element; export { TextSwirl }; export type { TextSwirlProps };