import React__default from 'react'; import { ButtonProps } from 'antd/lib/button'; interface IProps extends ButtonProps { /** * 附件id 需要翻译的附件id */ attachId?: string; /** * 附件名 需要翻译的附件名 */ attachName?: string; /** * 翻译后的任务ID 用来检测翻译是否完成 用来获取翻译后的文件 */ tid?: string; /** * 开始翻译的其他参数 */ translationParams?: any; /** * tid改变 */ tidChange?: (tid: string) => void; /** * 文件预览路径 */ previewUrl?: string; } declare const TranslationButton: React__default.FC; export { IProps, TranslationButton as default };