import { AACTree } from './treeStructure'; import { BaseProcessor, ProcessorOptions } from './baseProcessor'; /** * Resolve a processor instance by friendly format name or common extension. * @param format Format key or extension (e.g., 'snap', 'obf', 'xlsx') * @param options Optional processor configuration */ export declare function getProcessor(format: string, options?: ProcessorOptions): BaseProcessor; /** * Convenience helper to load a file into an AACTree using the inferred processor. * @param file Path to the source file * @param format Format key or extension (passed to getProcessor) */ export declare function analyze(file: string, format: string): Promise<{ tree: AACTree; }>;