/**
 * A handle to an HTML element that has a DONOBU_INTERACTABLE_ATTRIBUTE HTML attribute.
 */
export type InteractableElement = {
    /**
     * The value for this element's DONOBU_INTERACTABLE_ATTRIBUTE.
     */
    readonly donobuAttributeValue: string;
    /**
     * A short HTML snippet of the element.
     */
    readonly htmlSnippet: string;
};
//# sourceMappingURL=InteractableElement.d.ts.map