import * as React from 'react'; export type DropListMenuOption = { key: string; label: React.ReactNode; icon?: React.ReactNode; visible?: boolean; onSelected: () => void; }; /** 如果返回()=>JSX.Element而不是Element的话会影响arcod的样式 */ export declare const getDropListMenu: (options: DropListMenuOption[]) => React.JSX.Element;