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