import { ReactNode } from 'react'; interface MotionCollapseProps { /** Whether the content is visible */ show: boolean; children: ReactNode; className?: string; } /** * Animates content height from 0 to auto with opacity. * Useful for expandable sections, filter bars, and conditional content. */ export declare function MotionCollapse({ show, children, className }: MotionCollapseProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=MotionCollapse.d.ts.map