import { ComponentProps, ElementType, FC } from 'react'; import { Colors, DeepPartial, RoundedSizes, RoundedSizesTypes } from '../../types/types'; export interface SidebarItemTheme { active: string; base: string; rounded: RoundedSizesTypes; collapsed: { insideCollapse: string; noIcon: string; }; content: { base: string; }; icon: { base: string; active: string; }; badge: string; listItem: string; } export interface SidebarItemProps extends Omit, "ref">, Record { active?: boolean; as?: ElementType; href?: string; icon?: FC>; badge?: string; rounded?: RoundedSizes; labelColor?: Colors; theme?: DeepPartial; } export declare const SidebarItem: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; //# sourceMappingURL=SidebarItem.d.ts.map