import { Vec3 } from "src/math/Vec3";
import { TypedConstraint } from "./constraint";
/**
 * @description :  铰链约束
 * @example     :
 */
export declare class HingeContraint extends TypedConstraint {
    axis: Vec3;
    minAngle: number;
    maxAngle: number;
    constructor();
}
