import * as React from "react";
type Props = React.PropsWithChildren<{
    active?: boolean;
}>;
declare const TextWrapper: ({ active, children }: Props) => React.JSX.Element;
export default TextWrapper;
//# sourceMappingURL=TextWrapper.d.ts.map