import type { NavbarColors } from './navbar.theme';
import type { DeepPartial, FlowbiteClass } from 'flowbite-angular';
/**
 * Required properties for class generation of `NavbarItemComponent`
 */
export interface NabvarItemProperties {
    color: keyof NavbarColors;
    customStyle: DeepPartial<NavbarItemTheme>;
}
/**
 * Theme definition for `NavbarItemComponent`
 */
export interface NavbarItemTheme {
    root: {
        base: string;
        color: NavbarColors;
    };
}
/**
 * Default theme for `NavbarItemComponent`
 */
export declare const navbarItemTheme: NavbarItemTheme;
/**
 * Generated class definition for `NavbarItemComponent`
 */
export type NavbarItemClass = FlowbiteClass;
