import { ComponentWithAs as _ } from '@chakra-ui/react'; import type { BaseSidebarItemProps } from './types'; export interface SidebarItemProps extends BaseSidebarItemProps { isActive?: boolean | (() => boolean); } export declare const SidebarItem: _<"li", SidebarItemProps>;