import { CSSProperties, ReactNode } from 'react'; interface TextAreaProps { children?: ReactNode; style?: CSSProperties | undefined; className?: string; id?: string; key?: string | number; } declare const TextAreaWordCounter: ({ children, style, className, key, id, }: TextAreaProps) => import("react/jsx-runtime").JSX.Element; export default TextAreaWordCounter;