export interface LobeIconCdnConfig { cdn?: 'github' | 'aliyun' | 'unpkg'; format?: 'svg' | 'png' | 'webp' | 'avatar'; isDarkMode?: boolean; type?: 'mono' | 'color' | 'text' | 'text-cn' | 'text-color' | 'brand' | 'brand-color'; } export declare const getLobeIconCDN: (id: string, config?: LobeIconCdnConfig) => string;