declare function removeNode(node: undefined | null): undefined; declare function removeNode(node: N): N; export default removeNode;