import * as React from 'react'; import { DropDownProps as AntdDropdownProps } from 'antd'; import { ItemType, MenuClickEventHandler } from 'rc-menu/lib/interface'; import './Dropdown.less'; export interface DropdownProps extends Partial { label?: string; menuitem: ItemType[]; menuClassName?: string; onMenuItemClick?: MenuClickEventHandler; onLableClick?: () => void; LeftLabelIcon?: React.ReactElement; RightLabelIcon?: React.ReactElement; active?: boolean; } export declare const Dropdown: React.FC; export interface MenuWithDescProps { title: string; description: string; className?: string; width?: string | number; } export declare const MenuWithDesc: ({ title, description, className, width }: MenuWithDescProps) => import("react/jsx-runtime").JSX.Element;