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