import * as React from "react";
declare type CharWrapperProps = {
    children: React.ReactNode;
    element: React.ElementType;
};
declare const CharWrapper: React.FC<CharWrapperProps>;
export default CharWrapper;
