import { AttributeHandler } from "../attributes"; /** * ClickableHelper is a helper class for MML elements that have a "clickable" attribute that can be changed. * * It reacts to the attribute values for clickable. It is minimal, but avoids the boilerplate being present in many classes. */ export declare class ClickableHelper { private props; static AttributeHandler: AttributeHandler; static observedAttributes: string[]; constructor(); isClickable(): boolean; handle(name: string, newValue: string): void; } //# sourceMappingURL=ClickableHelper.d.ts.map