import type { CollapsibleRootProps, CollapsibleRootEmits } from 'reka-ui'; import type { VNode } from 'vue'; import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/collapsible'; import type { ComponentConfig } from '../types/tv'; type Collapsible = ComponentConfig; export interface CollapsibleProps extends Pick { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; class?: any; b24ui?: Collapsible['slots']; } export interface CollapsibleEmits extends CollapsibleRootEmits { } export interface CollapsibleSlots { default?(props: { open: boolean; }): VNode[]; content?(props?: {}): VNode[]; } declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots any; }, string, import("vue").PublicProps, Readonly & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, { unmountOnHide: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, CollapsibleSlots>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };