UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

34 lines (33 loc) 1.15 kB
import { type ExtractPublicPropTypes } from 'vue'; import { type ThemeComponent } from '../../composables/useTheme'; declare const carouselSlideProps: { tag: { type: StringConstructor; default: string; }; }; export type CarouselSlideProps = ExtractPublicPropTypes<typeof carouselSlideProps>; type InternalClasses = 'wrapper'; export interface CarouselSlideTheme extends ThemeComponent<CarouselSlideProps, InternalClasses> { } declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{ tag: { type: StringConstructor; default: string; }; }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{ tag: { type: StringConstructor; default: string; }; }>> & Readonly<{}>, { tag: string; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };