import { TreeNode } from './TreeNode'; /** * Create a Gedcom-like string representation of this Gedcom node. * @param node The Gedcom node */ export declare const nodeToString: (node: TreeNode) => string;