import Constraint from "../constraints/constraint";
import { ConstraintSolver } from "../solvers/solver";
import Space from "./space";
/**
 * Contains {@link Constraint}s involving {@link CollisionObject}s.
 */
export default class ConstraintSpace extends Space<Constraint, ConstraintSolver> {
    /**
     * Executes a solver on every object in the space.
     *
     * @param id The id of the solver to execute
     */
    solve(id: string, delta: number): void;
}
