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