import { Element2Term } from "../element2term.js";
/** Straight line (two-terminal); length from drawing `unit` / `l` / `to` / etc.). */
export declare class Line extends Element2Term {
    constructor(opts?: Record<string, unknown> & {
        arrow?: string;
    });
}
