import NightingaleBaseElement, { Constructor } from "../../../nightingale-base-element"; import { WithHighlightInterface } from ".."; import { WithZoomInterface } from "../../withZoom"; export interface WithSVGHighlightInterface extends WithZoomInterface, WithHighlightInterface { createHighlightGroup: () => void; updateHighlight: () => void; } declare const withSVGHighlight: >(superClass: T) => Constructor & T; export default withSVGHighlight; //# sourceMappingURL=index.d.ts.map