/** * Runs before exporting all charts */ export declare const EMITTER_EXPORT_START = "export-start"; /** * Begin exporting all charts */ export declare const EMITTER_EXPORT_ALL = "export-all"; /** * Exported single chart- includes data. * Should be called by the underlying chart component on success */ export declare const EMITTER_EXPORTED_CHART = "exported-chart-success"; /** * Failed to export single chart * Should be called by the underlying chart component on failure */ export declare const EMITTER_EXPORT_CHART_FAIL = "exported-chart-fail"; /** * Indicate that the export has completed */ export declare const EMITTER_EXPORT_SUCCESS = "export-success"; /** * Indicate that the export has failed */ export declare const EMITTER_EXPORT_FAILED = "export-failed";