import type { EditorState } from '@atlaskit/editor-prosemirror/state'; type NodeCount = Record; type NodesCount = { extensionNodeCount: NodeCount; nodeCount: NodeCount; }; export declare function countNodes(state: EditorState): NodesCount; export {};