import React from 'react'; import './index.less'; import { LocaleFunction } from '@lingxiteam/types'; interface PreviewFileProps { appId: string; fileIdOrUrl: string; pageId: string; file?: any; showDownLoad?: boolean; downloadClick?: (file: any) => void; showDelete?: boolean; deleteClick?: (url: string) => void; windowWidth?: number; getLocale: LocaleFunction; language: string; pageNumTotalPage?: string; onLeftClick: Function; onRightClick: Function; } declare const PreviewFile: React.FC; export default PreviewFile;