import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { DefineComponent } from 'vue'; import { ExtractPropTypes } from 'vue'; import { PropType } from 'vue'; import { PublicProps } from 'vue'; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; declare type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; declare const _default: __VLS_WithTemplateSlots, { is: string; isExpanded: boolean; isLazy: boolean; transitionName: string; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "after-expand": () => void; }, string, PublicProps, Readonly, { is: string; isExpanded: boolean; isLazy: boolean; transitionName: string; }>>> & Readonly<{ "onAfter-expand"?: (() => any) | undefined; }>, { is: ExpandOuterElement; isExpanded: boolean; isLazy: boolean; transitionName: string; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, { default?(_: {}): any; }>; export default _default; export declare type ExpandOuterElement = 'div' | 'td' | 'li'; export declare 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; } export { }