import { OptionProducer, ValueDefault, ValueRef } from '../../types/options'; import { ThemeColor } from '../../types/prefabs/theme-color'; type RedundantKeys = 'type' | 'key' | 'label'; type Attributes = Omit | Omit; type ColorAttributes = Omit & { ref?: { id?: string; }; value: ThemeColor | string; }; export declare const color: (label: string, attrs: ColorAttributes) => OptionProducer; export {};