import { FC } from 'react'; import { AnimateHeightProps } from 'react-animate-height'; export interface CollapsibleOwnProps { /** * controlled open state */ isOpen: boolean; } export declare type CollapsibleProps = CollapsibleOwnProps & AnimateHeightProps; /** * Animated expand/collapse container component, using [react-animate-height](https://github.com/Stanko/react-animate-height). * */ export declare const Collapsible: FC;