import React__default from 'react'; import { IButtonProps } from './interface.js'; interface IButtonPreviewProps extends Omit { /** 附件id */ attachId: string; /** 附件名 */ attachName: string; /** 附件大小 */ attachSize?: number; /** 附件列表 */ attachList?: { attachId: string; attachName: string; [props: string]: string; }[]; /** 是否通过公共链接下载 */ isPublic?: boolean; /** 文件服务器地址 */ FILE_BASEURL?: string; /** 代理点击事件 如果下载结束后 还需做别的处理 */ onClick?: (e: any, info: any) => void; } declare const ButtonPreview: React__default.FC; export { IButtonPreviewProps, ButtonPreview as default };