import { IconizzaIcon } from '@iconizza/types'; import { IconCSSIconOptions, IconContentIconOptions } from './types.js'; /** * Get CSS for icon, rendered as background or mask */ declare function getIconCSS(icon: IconizzaIcon, options?: IconCSSIconOptions): string; /** * Get CSS for icon, rendered as content */ declare function getIconContentCSS(icon: IconizzaIcon, options: IconContentIconOptions): string; export { getIconCSS, getIconContentCSS };