@nuxt/ui
Version:
A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.
22 lines (21 loc) • 1.03 kB
TypeScript
import type { AppConfig } from '@nuxt/schema';
import theme from '#build/ui/prose/accordion';
import type { AccordionProps } from '../../types';
import type { ComponentConfig } from '../../types/tv';
type ProseAccordion = ComponentConfig<typeof theme, AppConfig, 'accordion', 'ui.prose'>;
export interface ProseAccordionProps {
type?: 'single' | 'multiple';
class?: any;
ui?: ProseAccordion['slots'] & AccordionProps['ui'];
}
export interface ProseAccordionSlots {
default(props?: {}): any;
}
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<ProseAccordionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseAccordionProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseAccordionSlots>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};