import * as React from 'react'; import type { State, StatefulComponentContainerProps, StateChangeType } from './types'; declare class StatefulListContainer extends React.Component { static defaultProps: Partial; state: { items: React.ReactNode[]; }; onChange: ({ oldIndex, newIndex, targetRect, }: { oldIndex: number; newIndex: number; targetRect: ClientRect; }) => void; internalSetState(type: StateChangeType, changes: State): void; render(): React.ReactNode; } export default StatefulListContainer;