import * as React from 'react'; import type { ListProps } from './types'; import type { SyntheticEvent } from 'react'; declare class StatelessList extends React.Component { static defaultProps: Partial; state: { isFocusVisible: boolean; }; handleFocus: (event: SyntheticEvent) => void; handleBlur: (event: SyntheticEvent) => void; render(): React.JSX.Element; } export default StatelessList;