import { View } from '../core/view'; import { Property } from '../core/properties'; import { Color } from '../../color'; import { HtmlView as HtmlViewDefinition } from '.'; export declare class HtmlViewBase extends View implements HtmlViewDefinition { html: string; selectable: boolean; linkColor: Color; } export declare const htmlProperty: Property; export declare const selectableProperty: Property; export declare const linkColorProperty: Property;