/** * Component exports detector * Detects ALL exports from a component file to handle compound components */ /** * Detect all component exports from a file * This handles both single and compound components */ export declare function detectAllExports(filePath: string): string[]; /** * Extract components actually used in a story file * This helps us generate minimal imports */ export declare function extractComponentsFromStory(storyContent: string, componentName: string): string[]; /** * Generate full import statement for components */ export declare function generateFullImport(components: string[], packageName: string): string; /** * Get all required imports for a component based on its actual exports */ export declare function getRequiredImports(componentPath: string, packageName: string): { allExports: string[]; minimalImport: string; fullImport: string; }; //# sourceMappingURL=component-exports-detector.d.ts.map