import * as React from 'react'; interface DropListProps { show: boolean; onClose?: () => void; } declare class DropList extends React.Component { constructor(props: any); handleClose(e: React.MouseEvent): void; render(): JSX.Element; } export default DropList;