import * as React from 'react'; import { BoxProps } from '../Box'; import { ButtonProps } from '../Button'; import { InputProps } from '../Input'; import { DropdownMenuPopoverProps, DropdownMenuItemProps, DropdownMenuInitialState } from '../DropdownMenu'; declare type Option = { key: number | string; label: string; value: any; }; declare type Options = Array