import { SilkeCSSContextType } from '../silke-css-number-field'; import { SilkeIcons } from '../silke-icon'; // Internal types export type VevConditionSuggestion = { type: | SilkeCSSContextType['variablesv2'][0]['type'] | 'system' | 'widget' | 'operator' | 'combinator' | 'select' | 'boolean'; label: string; value: string | number | boolean; prefix?: string | number | boolean; suffix?: string | number | boolean; subLabel?: string; icon?: SilkeIcons; options?: string[]; }; export type ConditionSuggestion = VevConditionSuggestion | string;