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<HtmlViewBase, string>;
export declare const selectableProperty: Property<HtmlViewBase, boolean>;
export declare const linkColorProperty: Property<HtmlViewBase, Color>;
