import React from 'react'; import type { Translator } from '@eternalheart/file-preview-core'; export interface RendererErrorProps { error: Error; fileName: string; t: Translator; onRetry: () => void; onDownload: () => void; } /** * 渲染器错误 UI 组件 * 显示错误信息、文件名、重试和下载按钮 */ export declare const RendererError: React.FC; //# sourceMappingURL=RendererError.d.ts.map