import React from 'react'; interface FileModel { id: number; filename: string; path: string; title: string; url: string; extname: string; size: number; mimetype: string; } interface DownloadOnlyPreviewerProps { index: number; list: FileModel[]; onSwitchIndex(index: number | null): void; } export declare const DownloadOnlyPreviewer: React.FC; export {}; //# sourceMappingURL=DownloadOnlyPreviewer.d.ts.map