import React from "react"; import { TitleProps } from "../Title"; import { IconBaseProps } from "react-icons"; type CollapsibleMenuProps = React.HTMLAttributes & { headerButtonProps?: React.ButtonHTMLAttributes; headerContainerProps?: React.HTMLAttributes; headerTitleProps?: TitleProps; headerChevronProps?: IconBaseProps; headerActiveSideProps?: React.HTMLAttributes; contentWrapperProps?: React.HTMLAttributes; contentContainerProps?: React.HTMLAttributes; title?: string; open?: boolean; onToggleOpen?: (open: boolean) => void; }; export default function CollapsibleMenu({ open, onToggleOpen, children, title, headerButtonProps, contentContainerProps, contentWrapperProps, headerContainerProps, headerTitleProps, headerChevronProps, headerActiveSideProps, ...props }: CollapsibleMenuProps): React.JSX.Element; export { default as CollapsibleMenuItem } from "./CollapsibleMenuItem";