import type { Declaration } from './types';
/**
 * Extract only public API declarations from TypeScript source code
 * This focuses on what should be in .d.ts files, not implementation details
 */
export declare function extractDeclarations(sourceCode: string, filePath: string, keepComments?: boolean): Declaration[];