/// import { NodeItem } from '../interface'; interface IMatchNodeProps { config: NodeItem; parentNode: NodeItem; } declare function MatchNode({ config, parentNode }: IMatchNodeProps): JSX.Element; export default MatchNode;