import React, { Component } from 'react'; interface Props { /** A callback function when the dropdown is clicked */ onClick?: (value: string) => void; options: any[]; } export default class Dropdown extends Component { private wrapperRef; state: { expanded: boolean; selected: boolean; }; constructor(props: Props); componentDidMount(): void; componentWillUnmount(): void; onClick: (e: React.MouseEvent, value: string) => void | null; handleClickOutside: (e: Event) => void; toggleExpanded: () => void; render(): JSX.Element; } export {};