export declare enum MENUBAR_TYPE {
    NORMAL = "normal",
    CONDENSED = "condensed"
}
export interface IMenuBarItem {
    [key: string]: string;
}
export interface IMenuBarProps {
    /**
     * Pick the type
     */
    type: MENUBAR_TYPE;
    /**
     * Logo Text for Menu Bar component
     */
    logoText: string;
    /**
     * Array of Menu Bar Item
     */
    menuItems: Array<IMenuBarItem>;
    /**
     * Fill property for Icon component
     */
    iconFill: string;
    /**
     * Number for Cart Items component
     */
    cartItemsNumber: number;
}
