import type { MarkingView } from "./marking"; import { Marking } from "./marking"; import type { RendererView } from "../renderers/renderer"; import { Model } from "../../model"; import { View } from "../../core/view"; import type * as visuals from "../../core/visuals"; import type * as p from "../../core/properties"; export declare class DecorationView extends View { model: Decoration; visuals: Decoration.Visuals; readonly parent: RendererView; marking: MarkingView; children_views(): View[]; lazy_initialize(): Promise; } export declare namespace Decoration { type Attrs = p.AttrsOf; type Props = Model.Props & { marking: p.Property; node: p.Property<"start" | "middle" | "end">; }; type Visuals = visuals.Visuals; } export interface Decoration extends Decoration.Attrs { } export declare class Decoration extends Model { properties: Decoration.Props; __view_type__: DecorationView; constructor(attrs?: Partial); } //# sourceMappingURL=decoration.d.ts.map