import React from 'react';
import { ITextCountStandAlone } from './types/textCount';
/**
 * @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 TextCountStandAlone: React.ForwardRefExoticComponent<ITextCountStandAlone & React.RefAttributes<HTMLDivElement>>;
