import * as React from 'react'; import type { StatefulListProps, StateReducer } from './types'; declare function StatefulList(props: StatefulListProps): React.JSX.Element; declare namespace StatefulList { var defaultProps: { initialState: { items: any[]; }; stateReducer: StateReducer; }; } export default StatefulList;