import { Ref } from 'vue'; import { CLColors, CLPalette } from '../../index.ts'; interface IconThemeContext { colors: Ref; darkMode: Ref; } interface IconThemeProps { color?: CLColors; theme?: IconThemeContext; } export declare const iconTheme: ({ color, theme }: IconThemeProps) => { '--clll-icon-color': string; }; export {};