import { FC } from 'react'; /** * Collapsible properties */ export interface CollapsiblePropsStrict { /** Show animation if true */ animate?: boolean; /** Adds one or more classnames for an element */ className?: string; /** Set the wrapping element's tagname */ el?: any; /** * *Warning* Only works when animate={true} * CSS easing function to be applied to the animation */ easing?: string; /** Whether the Collapsible is expanded or not */ open?: boolean; } export interface CollapsibleProps extends CollapsiblePropsStrict { [propName: string]: any; } export declare const Collapsible: FC;