export interface CharCountProps { value: string; maxLength?: number; } declare const CharCount: React.FC; export default CharCount;