import * as react from 'react'; import { PropsWithChildren } from 'react'; type CollapsibleProps = PropsWithChildren<{ className?: string; innerClassName?: string; expanded: boolean; duration?: number; animationType?: "scale" | "translate"; }>; declare const Collapsible: react.ForwardRefExoticComponent<{ className?: string | undefined; innerClassName?: string | undefined; expanded: boolean; duration?: number | undefined; animationType?: "scale" | "translate" | undefined; } & { children?: react.ReactNode; } & react.RefAttributes>; export { type CollapsibleProps, Collapsible as default };