UNPKG

naive-ui

Version:

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

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