import { TreeNode } from '@tracktor/types-treege'; type Mock = { input: TreeNode; output: TreeNode; treePath: string; name: string; }; declare const simpleTreeMock: Mock; declare const treeWithFields: Mock; declare const treeWithTreeMock: Mock; declare const mainTreeWithTreeMock: Mock; export { simpleTreeMock, treeWithFields, treeWithTreeMock, mainTreeWithTreeMock };