import { IShape, ShapeDistance, ShapeIntersection } from "../../common-types"; export declare function gjkDistance(A: IShape, B: IShape): ShapeDistance; export declare function gjkIntersection(A: IShape, B: IShape): ShapeIntersection;