import { TransparencyGridProps } from '@zag-js/color-picker'; import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; export interface ColorPickerTransparencyGridBaseProps extends TransparencyGridProps, PolymorphicProps { } export interface ColorPickerTransparencyGridProps extends ColorPickerTransparencyGridBaseProps, /** * @vue-ignore */ HTMLAttributes { } declare const _default: __VLS_WithTemplateSlots< DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };