import { b2CircleShape } from "../../Collision/Shapes/b2CircleShape";
import { b2Shape } from "../../Collision/Shapes/b2Shape";
import { b2StaticEdgeShape } from "../../Collision/Shapes/b2StaticEdgeShape";
import { b2Manifold } from "../../Collision/b2Manifold";
import { b2XForm } from "../../Common/Math";
import { b2ContactListener } from "../b2ContactListener";
import { b2Contact } from "./b2Contact";
export declare class b2StaticEdgeAndCircleContact extends b2Contact {
    static Create(shape1: b2Shape, shape2: b2Shape, allocator: any): b2Contact;
    static Destroy(contact: b2Contact, allocator: any): void;
    constructor(shape1: b2Shape, shape2: b2Shape);
    private static s_evalCP;
    Evaluate(listener: b2ContactListener): void;
    GetManifolds(): b2Manifold[];
    private m_manifolds;
    m_manifold: b2Manifold;
    private m0;
    static b2CollideStaticEdgeAndCircle(manifold: b2Manifold, edge: b2StaticEdgeShape, xf1: b2XForm, circle: b2CircleShape, xf2: b2XForm): void;
}
//# sourceMappingURL=b2StaticEdgeAndCircleContact.d.ts.map