import { AnalyzerOptions } from './AnalyzerOptions';
import { CallGraphResult } from './CallGraphTypes';
export * from './SymbolTypes';
export * from './AnalyzerOptions';
export * from './CallGraphTypes';
export interface RuntimeTraceOptions extends AnalyzerOptions {
    runtime?: boolean;
    env?: string;
    method?: string;
}
export interface RuntimeTraceResult extends CallGraphResult {
    parameters?: Record<string, any>;
    state?: Record<string, any>;
    error?: Error;
}
