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