import { ISplitTextLetterMeta, ISplitTextWordMeta } from '../types';
interface IProps {
    wordsMeta: ISplitTextWordMeta[];
    classname: string;
    tagName: keyof HTMLElementTagNameMap;
}
/**
 * Wraps each letter in every word inside the container with the specified HTML tag and class name.
 */
export declare function wrapLetters({ wordsMeta, classname, tagName }: IProps): {
    lettersMeta: ISplitTextLetterMeta[];
};
export {};
//# sourceMappingURL=wrapLetters.d.ts.map