import { Component } from 'react'; import { ListProps } from './Props'; declare class List extends Component { static displayName: string; static defaultProps: { show: boolean; }; render(): JSX.Element; } export default List;