export type ExportContextMode = "full" | "code"; export interface ExportContextOptions { full?: boolean; code?: boolean; output?: string; check?: boolean; now?: Date; } export interface ExportContextReport { mode: ExportContextMode; outputPath: string; outputRelativePath: string; sourceFiles: string[]; sourceContextCount: number; sourceCodeCount?: number; totalLines?: number; totalCharacters?: number; warnings: string[]; wrote: boolean; } export declare function runExportContext(projectRoot: string, options?: ExportContextOptions): Promise;