import { Annotation, AnnotationView } from "./annotation"; import { LineScalar } from "../../core/property_mixins"; import { Line } from "../../core/visuals"; import { SpatialUnits, RenderMode, Dimension } from "../../core/enums"; import * as p from "../../core/properties"; export declare class SpanView extends AnnotationView { model: Span; visuals: Span.Visuals; initialize(): void; connect_signals(): void; render(): void; protected _draw_span(): void; } export declare namespace Span { type Attrs = p.AttrsOf; type Props = Annotation.Props & LineScalar & { render_mode: p.Property; x_range_name: p.Property; y_range_name: p.Property; location: p.Property; location_units: p.Property; dimension: p.Property; for_hover: p.Property; computed_location: p.Property; }; type Visuals = Annotation.Visuals & { line: Line; }; } export interface Span extends Span.Attrs { } export declare class Span extends Annotation { properties: Span.Props; constructor(attrs?: Partial); static initClass(): void; }