import { PluginModel } from "@dt/core-viewer"; import { DrillthroughAction, InteractivityAction } from "../GcImageDocument"; export declare type ReportEvent = PluginModel.ViewerEvent | { type: "ItemClicked"; iStorePos: number; a: InteractivityAction; }; export declare type ReportAction = InteractivityAction | DrillthroughAction | { Type: "print"; } | { Type: "save"; } | { Type: "rotate"; } | { Type: "text-selection"; } | { Type: "pan"; } | { Type: "doc-properties"; };