import { ReactNode } from 'react'; export interface CollapseProps { visible?: boolean; animationDuration?: number; byPassAnimationCallback?: boolean; children: ReactNode; } export default function Collapse({ visible, animationDuration, byPassAnimationCallback, children, }: CollapseProps): JSX.Element;