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