import type { VNode } from 'vue'; import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/prose/p'; import type { ComponentConfig } from '../../types/tv'; type ProseP = ComponentConfig; export interface ProsePProps { /** * @defaultValue false */ small?: boolean; /** * @defaultValue 'default' */ accent?: ProseP['variants']['accent']; class?: any; b24ui?: ProseP['slots']; } export interface ProsePSlots { default(props?: {}): VNode[]; } declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots & Readonly<{}>, { small: boolean; accent: ProseP["variants"]["accent"]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProsePSlots>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };