import type { SidebarColors } from './sidebar.theme';
import type { DeepPartial, FlowbiteClass } from 'flowbite-angular';
/**
 * Required properties for the class generation of `SidebarItemGroupComponent`
 */
export interface SidebarItemGroupProperties {
    color: keyof SidebarColors;
    customStyle: DeepPartial<SidebarItemGroupTheme>;
}
/**
 * Theme definition for `SidebarItemGroupComponent`
 */
export interface SidebarItemGroupTheme {
    root: {
        base: string;
    };
    spanText: {
        base: string;
        color: SidebarColors;
    };
}
/**
 * Default theme for `SidebarItemGroupComponent`
 */
export declare const sidebarItemGroupTheme: SidebarItemGroupTheme;
/**
 * Generated class definition for `SidebarItemGroupComponent`
 */
export interface SidebarItemGroupClass extends FlowbiteClass {
    spanClass: string;
}
