import { Shape } from "./Shape";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class Line extends Shape {
    static $t: Type;
    constructor();
    an: number;
    ao: number;
    ap: number;
    aq: number;
}
