@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
22 lines (21 loc) • 856 B
TypeScript
import { ColorFormat } from '@zag-js/color-picker';
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
export interface ColorPickerViewBaseProps extends PolymorphicProps {
}
export interface ColorPickerViewProps extends ColorPickerViewBaseProps,
/**
* @vue-ignore
*/
HTMLAttributes {
format: ColorFormat;
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<ColorPickerViewProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ColorPickerViewProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};