import { Base, Point, Type } from "./type";
import { LineEquation } from "./LineEquation";
/**
 * @hidden
 */
export declare class Compute extends Base {
    static $t: Type;
    static b(a: Point, b: Point, c: Point, d: Point): Point;
    static a(a: LineEquation, b: LineEquation): Point;
}
