/** * Quickstart example for OmegaSynth * Demonstrates how to use the pretrained model * * 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. */ /** * Example 1: Using pretrained model in retrieval mode */ export declare function examplePretrainedRetrieval(): Promise; /** * Example 2: Using pretrained model in hybrid mode */ export declare function examplePretrainedHybrid(): Promise; /** * Example 3: Training custom model */ export declare function exampleCustomTraining(): Promise; /** * Example 4: Deterministic generation with seed */ export declare function exampleDeterministic(): Promise; /** * Run all examples */ export declare function runAllExamples(): Promise;