import * as React from 'react'; import { BoxProps } from '../box'; export type DropDownProps = BoxProps; declare const Dropdown: { ({ width, className, children, ...props }: DropDownProps): React.JSX.Element; displayName: string; Item: React.FC; }; export default Dropdown;