UNPKG

@nuxt/ui-pro

Version:

Ship beautiful web applications at the speed of light with Nuxt UI Pro.

20 lines (19 loc) 827 B
import type { AppConfig } from '@nuxt/schema'; import type { ComponentConfig } from '@nuxt/ui'; import theme from '#build/ui-pro/prose/h4'; type ProseH4 = ComponentConfig<typeof theme, AppConfig, 'h4', 'uiPro.prose'>; export interface ProseH4Props { id?: string; class?: any; ui?: ProseH4['slots']; } export interface ProseH4Slots { default(props?: {}): any; } declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseH4Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseH4Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseH4Slots>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };