import { FC } from 'react'; import { CollapseProps } from 'types'; /** * `Collapse` will trigger layout recalculations (because we're animating * height/width) and is generally not advised for performant use. Consider * using `Fade` or `Slide` instead. If layout churn is not an issue (absolute * positioning may help) it is typically safe to use. */ export declare const Collapse: FC; export default Collapse;