import { type ExtendedBool } from '../prelude.js'; import type { Body } from '../verlet/Body'; /** Collision detection function using the Separating Axis Theorem (SAT) */ export declare const findCollision: (b0: Body, b1: Body) => ExtendedBool; /** Resolve the last collision found by `findCollision()`. */ export declare const resolveCollision: (b0: Body, b1: Body, friction: number) => void;