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