import { ChartWithData } from './common.contracts'; /** * Trigger an export of one or more charts as a zip file * * @param contentItems Array of ChartWithData * @param fileName file name to use as zip (excluding extension) */ export declare const exportFiles: (contentItems: ChartWithData[], fileName?: string) => Promise;