interface MotionAdapter {
    AnimatePresence?: ComponentType<{ children: ReactNode }>;
    Slot: ComponentType<{ children: ReactNode; id: string; motionId?: string }>;
}

Properties

AnimatePresence?: ComponentType<{ children: ReactNode }>
Slot: ComponentType<{ children: ReactNode; id: string; motionId?: string }>