/** * Upload file(s) to an app * @param appId * @param path * @param files * @param insightId * @returns */ export declare const uploadApp: (appId: string, path: string, files: File | File[], insightId: string | null) => Promise<{ response: Response; data: { fileName: string; fileLocation: string; }[]; }>;