import { type AnalyzeServeOptions } from '../types/types-analyzer.js'; import type { FlatEvolveOptions } from '../types/types-options.js'; /** * Starts the analysis process for the given evolve options and analyze options. * * @param evolveOptions - The options for the evolve process. * @param analyzeOptions - The options for the analyze process (optional). * @returns A promise that resolves when the analysis process is complete. */ export declare const startAnalyzer: (evolveOptions: FlatEvolveOptions, analyzeOptions?: AnalyzeServeOptions) => Promise;