/// <reference types="react" />
export interface CharCountProps {
    value: string;
    maxLength?: number;
}
declare const CharCount: React.FC<CharCountProps>;
export default CharCount;
