import type { VNode } from 'vue'; import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/advice'; import type { UseComponentIconsProps } from '../composables/useComponentIcons'; import type { ComponentConfig } from '../types/tv'; type Advice = ComponentConfig; export interface AdviceProps extends Omit { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; description?: string; /** * @defaultValue 'bottom' */ angle?: Advice['variants']['angle']; class?: any; b24ui?: Advice['slots']; } export interface AdviceSlots { default?(props?: {}): VNode[]; leading?(props: { b24ui: Advice['b24ui']; }): VNode[]; } declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots & Readonly<{}>, { as: any; angle: Advice["variants"]["angle"]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, AdviceSlots>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };