import type { EditorState } from 'prosemirror-state';
import type { StateCounter, WordCounter } from './types';
export declare function countState(state: EditorState): StateCounter;
export declare function countWords(state: EditorState): WordCounter;
