import type { Editor } from '@tiptap/core'; interface CharacterCountProps { editor: Editor | null; limit: number; showWords?: boolean; showCircle?: boolean; class?: string; } /** * [Go to docs](https://flowbite-svelte.com/docs/plugins/wysiwyg) * ## Type * [CharacterCountProps](https://github.com/shinokada/flowbite-svelte-plugins/blob/main/src/lib/types.ts#L266) * ## Props * @prop editor * @prop limit * @prop showWords = true * @prop showCircle = true * @prop class: className */ declare const CharacterCount: import("svelte").Component; type CharacterCount = ReturnType; export default CharacterCount;