@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
25 lines (24 loc) • 1.08 kB
TypeScript
import { HTMLAttributes, UnwrapRef, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { RenderStrategyProps } from '../../utils/use-render-strategy';
import { PolymorphicProps } from '../factory';
import { UseColorPickerReturn } from './use-color-picker';
interface RootProviderProps {
value: UnwrapRef<UseColorPickerReturn>;
}
export interface ColorPickerRootProviderBaseProps extends RootProviderProps, RenderStrategyProps, PolymorphicProps {
}
export interface ColorPickerRootProviderProps extends ColorPickerRootProviderBaseProps,
/**
* @vue-ignore
*/
HTMLAttributes {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<ColorPickerRootProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ColorPickerRootProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};