import { TranslatorProps } from '../i18n/hooks/use-translator'; interface FileItem { fileName: string; id: number; isMetaFile?: boolean; } interface PathItem { fileName: string; path: string; } interface ConnexionNeed { baseUrl: string; token: string; jsessionId?: string; } export declare const openFileInExternalApp: (file: FileItem | PathItem, authentification: ConnexionNeed, I18n: TranslatorProps) => Promise; export {};