import React from "react"; import type { TextareaProps } from "./Textarea.js"; interface Props { maxLengthId: string; maxLength: number; currentLength: number; size: TextareaProps["size"]; i18n: TextareaProps["i18n"]; } declare const TextareaCounter: ({ maxLengthId, maxLength, currentLength, size, i18n, }: Props) => React.JSX.Element; export default TextareaCounter;