import { IChatToolbarItem, IMaterial } from '../../interface'; import { MaterialHelper } from './material-helper'; export declare class FileHelper extends MaterialHelper { /** * 执行操作 * * @author tony001 * @date 2025-02-28 15:02:27 * @return {*} {Promise} */ excuteAction(event: MouseEvent, item?: IChatToolbarItem): Promise; /** * 构建素材对象 * @param folder * @param file * @returns */ buildMaterialObject(folder: string | undefined, file: File): IMaterial; }