import { ParsedArguments } from '../cli-utils/arg-parser'; import { GraphFormat } from '../cli-utils/format-detection'; export interface AnalyzeOptions { /** Input file path */ input: string; /** Output file path (optional, defaults to stdout) */ output?: string; /** Explicitly specify input format */ format?: GraphFormat; /** Verbose output */ verbose: boolean; } /** * Parse analyze command arguments. * @param args * @param arguments_ */ export declare const parseAnalyzeArgs: (arguments_: ParsedArguments) => AnalyzeOptions; /** * Execute the analyze command. * @param options */ export declare const executeAnalyze: (options: AnalyzeOptions) => void; /** * Run the analyze command from parsed arguments. * @param args * @param arguments_ */ export declare const runAnalyze: (arguments_: ParsedArguments) => void; //# sourceMappingURL=analyze.d.ts.map