export interface NavigationTopClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the logo element. */ productLogo: string; /** Class name applied to the page title element. */ pageTitle: string; /** Class name applied to the children. */ navigationContent: string; /** Class name applied to the search bar element. */ searchBar: string; /** Class name applied to the icon actions element. */ iconActions: string; /** Class name applied to the primary actions element. */ primaryActions: string; /** Class name applied to the user avatar element. */ userAvatar: string; } export type TabClassKey = keyof NavigationTopClasses; export declare function getNavigationTopUtilityClass(slot: string): string; declare const navigationTopClasses: NavigationTopClasses; export default navigationTopClasses;