import { type CSSProperties } from 'react'; type FlipTextProps = { /** * Additional CSS classes for the wrapper. */ className?: string; /** * The text content to animate. */ children: string; /** * Duration of each flip animation in seconds. */ duration?: number; /** * Initial delay before the first character starts in seconds. */ delay?: number; /** * Whether the animation should loop infinitely. */ loop?: boolean; /** * Custom separator for splitting text into unbroken groups. */ separator?: string; /** * Additional inline styles for the wrapper. */ style?: CSSProperties; }; declare const FlipText: ({ className, children, duration, delay, loop, separator, style, }: FlipTextProps) => import("react/jsx-runtime").JSX.Element; export { FlipText }; export type { FlipTextProps };