import { NSplitText, SplitText } from 'vevet'; import { IBaseComponent } from '../../types'; declare type TPickedProps = 'hasLetters' | 'hasLines' | 'letterTag' | 'wordTag' | 'lineTag'; export interface ISplitTextProps extends IBaseComponent, Pick { /** Source text */ text: string; /** Event on creation */ onInit?: (text: SplitText) => void; /** * Lazy initialization * * @default true */ isLazy?: boolean; } export declare type TSplitTextInstance = SplitText; export {}; //# sourceMappingURL=types.d.ts.map