import { SlotsType, type ExtractPropTypes, type PropType } from 'vue'; export declare const transitionProps: { name: { type: StringConstructor; default: string; }; css: { type: BooleanConstructor; default: boolean; }; type: { type: PropType<"transition" | "animation">; }; duration: { type: PropType; }; mode: { type: PropType<"in-out" | "out-in" | "default">; }; appear: { type: BooleanConstructor; default: boolean; }; enterFromClass: { type: StringConstructor; }; enterActiveClass: { type: StringConstructor; }; enterToClass: { type: StringConstructor; }; appearFromClass: { type: StringConstructor; }; appearActiveClass: { type: StringConstructor; }; appearToClass: { type: StringConstructor; }; leaveFromClass: { type: StringConstructor; }; leaveActiveClass: { type: StringConstructor; }; leaveToClass: { type: StringConstructor; }; }; export type TransitionProps = ExtractPropTypes; export interface TransitionSlots { default: {}; } export declare const transitionSlots: SlotsType;