import { ComponentProps, HTMLAttributes, RefObject } from "react"; interface CollapseTheme { visible?: string; hidden?: string; baseTransition?: string; collapsing?: string; collapsingHorizontal?: string; collapseStyles?: string; scrollStyles?: string; } interface CollapseProps extends HTMLAttributes { collapseRef?: RefObject; show?: boolean; tag?: ComponentProps; onShow?: any; onHide?: any; horizontal?: boolean; scroll?: boolean; theme?: CollapseTheme; } export type { CollapseProps };