type Props = { charset: 'UTF-8' | 'UTF-16'; onChange?: ({ words, textLength, readTime }: { words: number; textLength: number; readTime: number; }) => void; }; export default function CharacterCountPlugin({ charset, onChange }: Props): null; export {};