import { ConstraintConfig, MessageType, UUID } from "../../lib/types"; declare function addConstraint({ constraintId, bodyAUuid, bodyBUuid, options }: { constraintId: any; bodyAUuid: any; bodyBUuid: any; options: any; }): void; declare function updateConstraint({ constraintId, ...config }: ConstraintConfig & { constraintId: UUID; }): void; declare function removeConstraint({ constraintId }: { constraintId: any; }): void; export declare const constraintEventReceivers: { 8: typeof addConstraint; 9: typeof updateConstraint; 10: typeof removeConstraint; }; export {};