/** * Test app: Load OmegaSynth model and use it to train AsterMind ELM * * This demonstrates: * 1. Loading a saved OmegaSynth model * 2. Generating synthetic training data * 3. Training an AsterMind ELM on the synthetic data * 4. Testing the ELM * * This example shows how customers would use the installed @astermind/astermind-synth package. * After installing: npm install @astermind/astermind-synth * * Note: TypeScript may show errors here during development, but these imports * will work correctly when customers install the package. */ /** * Main function */ declare function main(): Promise; export { main as runELMTraining };