import { type Project } from 'ts-morph'; import type { AnalysisExport } from './types.js'; interface AnalyzeExportsResult { exports: AnalysisExport[]; config: { exportName: string; isReadme: boolean; } | null; } /*** * Collects exported declarations from configured package entrypoints. */ export declare function analyzeExports(project: Project, options: { root: string; entrypoints: readonly string[]; }): AnalyzeExportsResult; export {};