import type { FC, PropsWithChildren } from 'react'; export type CollapseProps = PropsWithChildren<{ isOpen: boolean; id?: string; className?: string; transition?: string; onMouseEnter?: () => void; onMouseLeave?: () => void; }>; export declare const Collapse: FC; //# sourceMappingURL=Collapse.d.ts.map