import type { ComputeNode } from 'three/webgpu'; import type { BoidsComputeSimulation } from './contracts.js'; declare const computeBoids: (simulation: BoidsComputeSimulation) => ComputeNode; export { computeBoids }; export type { BoidsComputeSimulation } from './contracts.js';