import React from 'react'; export interface LineWrapperProp { /** * The current index of the line. */ lineIndex: number; /** * Extra props forwarded from SplitText. */ extraProps?: T; } export declare const LineWrapper: React.FC; export interface WordWrapperProp { /** * The current line index where the word wrapper lives. */ lineIndex: number; /** * The current index of the word. */ wordIndex: number; /** * The current index of the total wrapped words inside . */ countIndex: number; /** * Extra props forwarded from SplitText. */ extraProps?: T; } export declare const WordWrapper: React.FC; export interface LetterWrapperProp { /** * The current line index where the letter wrapper lives. */ lineIndex: number; /** * The current word index where the letter wrapper lives. */ wordIndex: number; /** * The current index of the letter. */ letterIndex: number; /** * The current index of the total wrapped letters inside . */ countIndex: number; /** * Extra props forwarded from SplitText. */ extraProps?: T; } export declare const LetterWrapper: React.FC;