import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { SidebarItemProps } from './SidebarItem'; export interface SidebarCollapseProps extends PropsWithChildren & SidebarItemProps> { open?: boolean; } declare const SidebarCollapse: FC; export default SidebarCollapse;