UNPKG

@bitrix24/b24ui-nuxt

Version:

Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE

25 lines (24 loc) 953 B
import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/prose/h6'; import type { ComponentConfig } from '../types/utils'; type ProseH6 = ComponentConfig<typeof theme, AppConfig, 'h6', 'b24ui.prose'>; export interface ProseH6Props { /** * @defaultValue 'default' */ accent?: ProseH6['variants']['accent']; class?: any; b24ui?: ProseH6['slots']; } export interface ProseH6Slots { default(props?: {}): any; } declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseH6Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseH6Props> & Readonly<{}>, { accent: ProseH6["variants"]["accent"]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseH6Slots>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };