import { type ExtractPropTypes, type SlotsType, type PropType } from 'vue'; export declare const transitionGroupProps: { tag: { type: StringConstructor; }; moveClass: { type: StringConstructor; }; effect: { type: PropType<"slide" | "flip" | "fade" | (string & {})>; default: string; }; type: { type: PropType<"transition" | "animation">; }; name: { type: StringConstructor; default: string; }; duration: { type: PropType; }; css: { type: BooleanConstructor; default: boolean; }; 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 TransitionGroupProps = ExtractPropTypes; export interface TransitionGroupSlots { default: {}; } export declare const transitionGroupSlots: SlotsType;