import { Command } from 'commander'; interface ExportAiAuthoringContextOptions { source?: string; outDir: string; assetsRoot?: string; industry?: string; surface?: string; legacyV1?: boolean; } interface ExportAiAuthoringContextResult { contextId: string; sourcePath: string; outDir: string; writtenFiles: string[]; warnings: Array<{ code: 'AI_CONTEXT_V1_RUNTIME_INCOMPATIBLE'; message: string; }>; } export declare function exportAiAuthoringContext(options: ExportAiAuthoringContextOptions): ExportAiAuthoringContextResult; export declare const aiContextExportCommand: Command; export {};