interface TransitionWrapperProps { /** Whether the component should be shown */ show: boolean; /** The content to be rendered with transition */ children: React.ReactNode; /** Optional duration in milliseconds, defaults to 500 */ duration?: number; /** Optional custom transition classes */ transitionClasses?: string; } /** * A wrapper component that provides smooth enter/exit transitions for its children * using opacity and transform animations. */ export declare const TransitionWrapper: ({ show, children, duration, transitionClasses, }: TransitionWrapperProps) => import("react/jsx-runtime").JSX.Element | null; export {};