import { type ToolDefinition } from './types.js'; import { type EnvConfig } from '../config/env.js'; export type { SimComponent } from '../simulation/types.js'; declare function registerSimulationTools(registry: { register: (def: ToolDefinition) => void; }, _config: EnvConfig): void; export { registerSimulationTools };