/** * Obtiene todos los iconos disponibles en el sistema híbrido */ export declare function getAllIcons(): { allIcons: ({ name: string; type: "outline"; source: "legacy"; displayName: string; } | { name: string; type: "fill"; source: "legacy"; displayName: string; } | { name: string; type: "fill" | "outline"; source: "fontawesome"; displayName: string; })[]; outlineIcons: { name: string; type: "outline"; source: "legacy"; displayName: string; }[]; fillIcons: { name: string; type: "fill"; source: "legacy"; displayName: string; }[]; fontAwesomeIcons: { name: string; type: "fill" | "outline"; source: "fontawesome"; displayName: string; }[]; stats: { total: number; legacy: number; fontAwesome: number; outline: number; fill: number; }; }; /** * Obtiene solo los nombres de los iconos para usar en el Storybook */ export declare function getAllIconNames(): string[]; /** * Obtiene solo los iconos legacy (outline + fill) */ export declare function getLegacyIconNames(): string[]; //# sourceMappingURL=getAllIcons.d.ts.map