import { ComponentProps, ElementType, FC, PropsWithChildren } from 'react'; import type { FlowbiteColors } from '../Flowbite/FlowbiteTheme'; export interface SidebarItemProps extends PropsWithChildren, 'ref'> & Record> { active?: boolean; as?: ElementType; href?: string; icon?: FC>; label?: string; labelColor?: keyof SidebarItemLabelColors; } export interface SidebarItemLabelColors extends Pick { [key: string]: string; } declare const SidebarItem: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default SidebarItem;