export type ExpandOuterElement = 'div' | 'td' | 'li'; export interface ExpandProps { /** * The root element to use as the root element the expand transition gets applied to */ is?: ExpandOuterElement; /** * Dictates whether the content is expanded or collapsed */ isExpanded?: boolean; /** * Whether to only render content on expand */ isLazy?: boolean; /** * The name of the transition to pass to the transition component * @see: https://vuejs.org/guide/built-ins/transition.html#css-based-transitions */ transitionName?: string; } declare var __VLS_18: {}, __VLS_20: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_18) => any; } & { default?: (props: typeof __VLS_20) => any; }; declare const __VLS_base: import("vue").DefineComponent any; }, string, import("vue").PublicProps, Readonly & Readonly<{ "onAfter-expand"?: (() => any) | undefined; }>, { transitionName: string; is: ExpandOuterElement; isExpanded: boolean; isLazy: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };