/** * Static mode: extract exports using ts-morph (AST) — no API calls. */ import type { ExportsMap } from './types.js'; /** * Extract structured exports (functions, classes, types) and detect hooks from entry file. */ export declare function extractStaticExports(entryPath: string): ExportsMap; /** * Get list of hook names (functions starting with "use") from exports map. */ export declare function getHooksFromExports(exports: ExportsMap): string[]; //# sourceMappingURL=staticMode.d.ts.map