UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

23 lines (22 loc) 890 B
import { DropzoneProps } from '@zag-js/file-upload'; import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; export interface FileUploadDropzoneBaseProps extends PolymorphicProps, DropzoneProps { } export interface FileUploadDropzoneProps extends FileUploadDropzoneBaseProps, /** * @vue-ignore */ HTMLAttributes { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<FileUploadDropzoneProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FileUploadDropzoneProps> & Readonly<{}>, { disableClick: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };