import { Coordinate } from "./coordinate"; import type * as p from "../../core/properties"; import type { GlyphRenderer } from "../renderers/glyph_renderer"; export declare namespace Indexed { type Attrs = p.AttrsOf; type Props = Coordinate.Props & { index: p.Property; renderer: p.Property; }; } export interface Indexed extends Indexed.Attrs { } export declare class Indexed extends Coordinate { properties: Indexed.Props; constructor(attrs?: Partial); } //# sourceMappingURL=indexed.d.ts.map