import { Base, Point, Type } from "./type";
import { LineEquation } from "./LineEquation";
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;
}