import { XYGlyph, XYGlyphView } from "./xy_glyph"; import * as mixins from "../../core/property_mixins"; import type * as visuals from "../../core/visuals"; import type * as p from "../../core/properties"; import type { Rect } from "../../core/types"; import { StepMode } from "../../core/enums"; import type { Context2d } from "../../core/util/canvas"; export interface StepView extends Step.Data { } export declare class StepView extends XYGlyphView { model: Step; visuals: Step.Visuals; load_glglyph(): Promise; protected _bounds(bounds: Rect): Rect; protected _paint(ctx: Context2d, indices: number[], data?: Partial): void; protected _build_step_path(indices: number[], data?: Partial): { xs: number[]; ys: number[]; }; protected _paint_consecutive(ctx: Context2d, indices: number[], data?: Partial): void; protected _render_xy(ctx: Context2d, drawing: boolean, x: number, y: number): boolean; draw_legend_for_index(ctx: Context2d, bbox: Rect, _index: number): void; } export declare namespace Step { type Attrs = p.AttrsOf; type Props = XYGlyph.Props & { mode: p.Property; pad_before: p.Property; pad_after: p.Property; } & Mixins; type Mixins = mixins.LineScalar; type Visuals = XYGlyph.Visuals & { line: visuals.LineScalar; }; type Data = p.GlyphDataOf; } export interface Step extends Step.Attrs { } export declare class Step extends XYGlyph { properties: Step.Props; __view_type__: StepView; constructor(attrs?: Partial); } //# sourceMappingURL=step.d.ts.map