import React, { PureComponent } from 'react'; import { NodeListProps, NodeListState } from './interface'; export default class NodeList extends PureComponent { static contextType: React.Context; constructor(props: NodeListProps); static getDerivedStateFromProps(props: NodeListProps, prevState: NodeListState): {}; onMotionEnd: () => void; render(): (string | number | boolean | Iterable | React.JSX.Element)[]; }