import * as React from "react"; interface MenuOption { displayText: string; value: string | number; } interface Props { menuOptions?: MenuOption[]; selectedOption: string; onOptionClicked: (value: string | number) => void; className?: any; children?: React.ReactNode; shouldDismissOnSelection: boolean; } interface State { isMenuDeployed: boolean; } declare class Options extends React.Component { static defaultProps: Props; constructor(props: Props); executeClickPropAndDismiss: (value: string | number) => void; render(): JSX.Element; } export default Options;