import { ButtonProps } from '../Button/interface'; import { ButtonType } from '@firesoon/antd/lib/button/button'; export interface IDownload extends Omit { /** 下载按钮文字展示 */ text?: string | number; /** 是否隐藏下载icon,默认false */ hideIcon?: boolean; /** 按钮种类,可不传,默认link */ type?: ButtonType | 'icon' | 'reverse'; /** 下拉菜单选项 */ menuLists?: Array<{ label: string; }>; /** 下拉菜单选择 */ handleMenuClick?: () => void; }