import { Node } from '../types';
/**
 * Get the type of a node
 * @param {Node} node The schema node to get the type for
 */
export declare const nodeType: (node: Node) => string;
