import type { IVec2 } from '../Vec2'; import type { Body } from './Body'; import { Vertex } from './Vertex.js'; /** Static vertex class (Verlet integration) */ export declare class StaticVertex extends Vertex implements IVec2 { x: number; y: number; constructor(body: Body, x: number, y: number); integrate(): void; }