import { type SimulationKind } from '../../enums/index.js'; import { type IEventName } from '../../notifications/index.js'; import { type ISimulationTypeResponse } from '../../types/index.js'; export declare class SimulationType { readonly name: string; readonly label: string; readonly description: string; readonly group: string; readonly type: SimulationKind; readonly events: IEventName[]; constructor(simulationTypeResponse: ISimulationTypeResponse); }