UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

11 lines (10 loc) 476 B
import type { ComputedRef, Ref } from 'vue'; import type { MergedTheme } from '../../_mixins'; import type { ColorPickerTheme } from '../styles'; import type { ColorPickerSlots } from './ColorPicker'; import type { RenderLabel } from './interface'; export declare const colorPickerInjectionKey: import("vue").InjectionKey<{ themeRef: ComputedRef<MergedTheme<ColorPickerTheme>>; colorPickerSlots: ColorPickerSlots; renderLabelRef: Ref<RenderLabel | undefined>; }>;