import { Settings } from '../../settings'; import { Memory } from '../../utils'; import { Body } from '../body'; import { ConstraintsSolverInterface, IslandsGeneratorInterface } from '../types'; import { WorldIsland } from './world-island'; export declare class LocalIslandsGenerator implements IslandsGeneratorInterface { private readonly bodies; private readonly joints; private readonly contacts; private readonly stack; private readonly free; private readonly island; constructor(settings: Settings, solver: ConstraintsSolverInterface, memory: Memory); generate(bodies: Iterable): Iterable; }