import { AbstractTreeNode } from '../interfaces'; export default function isLeafNode(node: AbstractTreeNode, nodeMeta?: { depth?: number; expanded?: boolean; rowKey?: string; childField?: string; }): boolean;