export interface ContainerTextFlipProps {
    /** Array of words to cycle through in the animation */
    words?: string[];
    /** Time in milliseconds between word transitions */
    interval?: number;
    /** Additional CSS classes to apply to the container */
    className?: string;
    /** Additional CSS classes to apply to the text */
    textClassName?: string;
    /** Duration of the transition animation in milliseconds */
    animationDuration?: number;
}
export declare function ContainerTextFlip({ words, interval, className, textClassName, animationDuration, }: ContainerTextFlipProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=container-text-flip.d.ts.map