import { type CSSProperties, type ElementType } from 'react'; type FancyWipeTextProps = { as?: ElementType; children?: string | number; className?: string; colors?: string | readonly string[]; duration?: number; easing?: string; text?: string | number; style?: CSSProperties; }; declare const FancyWipeText: ({ as: Component, children, className, colors, duration, easing, text, style, }: FancyWipeTextProps) => import("react/jsx-runtime").JSX.Element; export { FancyWipeText }; export type { FancyWipeTextProps };