UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

47 lines (46 loc) 1.39 kB
import type { ExtractPublicPropTypes } from 'vue'; import { type ThemeComponent } from '../../composables/useTheme'; declare const containerProps: { tag: { type: StringConstructor; default: string; }; fluid: { type: BooleanConstructor; default: boolean; }; }; export type ContainerProps = ExtractPublicPropTypes<typeof containerProps>; type InternalClasses = 'wrapper'; export interface ContainerTheme extends ThemeComponent<ContainerProps, InternalClasses> { } declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{ tag: { type: StringConstructor; default: string; }; fluid: { type: BooleanConstructor; default: boolean; }; }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{ tag: { type: StringConstructor; default: string; }; fluid: { type: BooleanConstructor; default: boolean; }; }>> & Readonly<{}>, { tag: string; fluid: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };