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: <T extends Constructor<NightingaleBaseElement>>(superClass: T) => Constructor<WithSVGHighlightInterface> & T;
export default withSVGHighlight;
//# sourceMappingURL=index.d.ts.map