import { DataRenderer, DataRendererView } from "./data_renderer"; import type { GlyphView } from "../glyphs/glyph"; import { Glyph } from "../glyphs/glyph"; import { ColumnarDataSource } from "../sources/columnar_data_source"; import type { CDSViewView } from "../sources/cds_view"; import { CDSView } from "../sources/cds_view"; import { Indices } from "../../core/types"; import type * as p from "../../core/properties"; import type { HitTestResult } from "../../core/hittest"; import type { Geometry } from "../../core/geometry"; import type { SelectionManager } from "../../core/selection_manager"; import type { View } from "../../core/build_views"; import type { Context2d } from "../../core/util/canvas"; import type { BBox } from "../../core/util/bbox"; import { Decoration } from "../graphics/decoration"; import type { Marking } from "../graphics/marking"; export declare class GlyphRendererView extends DataRendererView { model: GlyphRenderer; cds_view: CDSViewView; glyph: GlyphView; selection_glyph: GlyphView; nonselection_glyph: GlyphView; hover_glyph?: GlyphView; muted_glyph: GlyphView; decimated_glyph: GlyphView; get glyph_view(): GlyphView; children_views(): View[]; protected all_indices: Indices; protected decimated: Indices; protected last_dtrender: number; get data_source(): p.Property; lazy_initialize(): Promise; build_glyph_view(glyph: T): Promise; remove(): void; private _previous_inspected?; connect_signals(): void; _update_masked_indices(): Indices; update_data(indices?: number[]): Promise; set_data(indices?: number[]): Promise; set_visuals(): Promise; map_data(): void; get bbox(): BBox; get has_webgl(): boolean; protected _paint(ctx: Context2d): void; get_reference_point(field: string | null, value?: unknown): number; _get_reference_point(field: string | null, value?: unknown): number | undefined | null; draw_legend(ctx: Context2d, x0: number, x1: number, y0: number, y1: number, field: string | null, label: unknown, index: number | null): void; hit_test(geometry: Geometry): HitTestResult; } export declare namespace GlyphRenderer { type Attrs = p.AttrsOf>; type Props = DataRenderer.Props & { data_source: p.Property; view: p.Property; glyph: p.Property; hover_glyph: p.Property; nonselection_glyph: p.Property; selection_glyph: p.Property; muted_glyph: p.Property; muted: p.Property; }; } export interface GlyphRenderer extends GlyphRenderer.Attrs { } export declare class GlyphRenderer extends DataRenderer { properties: GlyphRenderer.Props; __view_type__: GlyphRendererView; constructor(attrs?: Partial>); get_selection_manager(): SelectionManager; add_decoration(marking: Marking, node: "start" | "middle" | "end"): Decoration; } //# sourceMappingURL=glyph_renderer.d.ts.map