UNPKG

@ark-ui/vue

Version:

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

23 lines (22 loc) 905 B
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; import { ContentProps } from '@zag-js/bottom-sheet'; export interface BottomSheetContentBaseProps extends PolymorphicProps, ContentProps { } export interface BottomSheetContentProps extends BottomSheetContentBaseProps, /** * @vue-ignore */ Omit<HTMLAttributes, 'draggable'> { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<BottomSheetContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BottomSheetContentProps> & Readonly<{}>, { draggable: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };