import React from 'react';
import { ITextCountControlled } from './types/textCount';
/**
 * @deprecated This component has been deprecated and will be not exported in the next MAJOR release.
 * @description
 * TextCount component is a component that can be used to create a counter of characters.
 * @param {React.PropsWithChildren<ITextCountControlled>} props
 * @returns {JSX.Element}
 */
export declare const TextCount: React.ForwardRefExoticComponent<ITextCountControlled<string> & React.RefAttributes<HTMLDivElement>>;
