/** * Utilities for filtering package.json exports to identify component exports * vs non-component exports (CSS, docs, CLI tools, etc.) */ /** * Determines if a package.json export key represents a UI component. * * Filters out non-component exports: * - Wildcards (e.g., "./*") * - CSS files (e.g., "./index.css") * - Documentation (e.g., "./docs/...") * - Templates (e.g., "./templates/...") * - Manifests (e.g., "./manifests/...") * - Binaries (e.g., "./bin/...") * - CLI tools (e.g., "./cli") * * @param exportKey - The export key from package.json (e.g., "./button", "./cli") * @returns true if the export represents a UI component * * @example * isComponentExport("./button") // true * isComponentExport("./cli") // false * isComponentExport("./index.css") // false */ export declare function isComponentExport(exportKey: string): boolean; //# sourceMappingURL=component-filters.d.ts.map