/**
 * Embed a completed `Drawing` as a single `Element` — Python `elements/elements.py` · `ElementDrawing`.
 */
import type { Drawing } from "../drawing.js";
import { Element } from "../element.js";
export declare class ElementDrawing extends Element {
    readonly drawing: Drawing;
    constructor(drawing: Drawing, userParams?: Record<string, unknown>);
}
