import { HTMLMotionProps } from 'framer-motion'; import React from 'react'; import { WithTransitionConfig } from './transition-utils.js'; interface CollapseOptions { animateOpacity?: boolean; startingHeight?: number | string; endingHeight?: number | string; } type ICollapse = CollapseProps; interface CollapseProps extends WithTransitionConfig>, CollapseOptions { } declare const Collapse: React.ForwardRefExoticComponent>; export { Collapse, CollapseOptions, CollapseProps, ICollapse };