import { DeepPartial } from '../../types'; import { TextGeneratorTheme } from './theme'; export interface TextGeneratorProps { text: string; speed?: number; delay?: number; className?: string; theme?: DeepPartial; } /** * TextGenerator is a component that takes a string and animates it word by word. * @param text - The text to be animated. * @param speed - The speed of the animation. * @param delay - The delay between each word. * @param className - The class name to be applied to the text. * @param theme - The theme to be applied to the text. * */ export declare const TextGenerator: ({ text, speed, delay, className, theme: customTheme, }: TextGeneratorProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TextGenerator.d.ts.map