/**
 * BismillahCSS Dynamic Icon Library
 * High-fidelity SVG icons for futuristic interfaces.
 */
declare const bIcons: {
    power: string;
    glow: string;
    cyber: string;
    aurora: string;
    matrix: string;
};
declare const getIcon: (name: keyof typeof bIcons) => string;

export { bIcons, getIcon };
