import { FormOnColor } from '../../constants'; interface MaxCharactersProps { /** Current input length */ length: number; /** max character limit in textarea */ maxCharacters: number; /** The text is displayed in the end of the text-counter */ maxText: string; /** Changes the visuals of the textarea */ onColor?: keyof typeof FormOnColor; /** Max width of the component */ maxWidth?: string; } declare const MaxCharacters: React.FC; export default MaxCharacters;