import type { NodeType } from '@atlaskit/editor-prosemirror/model';
export declare function getBaseNodeTypeName(nodeType: NodeType): string;
/**
 * Returns true if two node types share the same base type name.
 *
 * Useful for comparing nodes that may exist as schema variants
 * (e.g. `panel` and `panel_c1` are considered the same base type).
 */
export declare function isNodeOfSameBaseType(a: NodeType, b: NodeType): boolean;
