import { InjectionToken } from '@angular/core'; export interface SvgIconType { name: string; data: string; } export interface SVG_CONFIG { icons?: SvgIconType | SvgIconType[]; color?: string; defaultSize?: keyof SVG_CONFIG['sizes']; sizes: { xs?: string; sm?: string; md?: string; lg?: string; }; } export declare const SVG_ICONS_CONFIG: InjectionToken; export declare const SVG_ICONS: InjectionToken;