//#region src/Collapse/Collapse.types.d.ts /** * Props for the Collapse component that creates smooth expand/collapse animations. */ type CollapseProps = { /** * Controls whether the collapse content is visible and expanded. * When true, the content smoothly expands to full height. * When false, the content smoothly collapses to zero height. * Use this to control the collapse state from parent components. */ isVisible: boolean; /** * Content to display inside the collapsible area. * Can be any React elements that you want to show/hide with animation. * The content will be measured and animated when expanding or collapsing. */ children: React.ReactNode; }; //#endregion export { CollapseProps };