import { type HeaderActionsColorType, type HeaderColorType } from '../../types'; export interface UseHeaderStyleProps { color?: HeaderColorType; hasActionsAtEnd?: boolean; isSimple?: boolean; actionsColor?: HeaderActionsColorType; isCurrentLink?: boolean; } export interface UseHeaderStyleReturn { classProps: { root: string; headerButton: string; headerDesktopActions: string; headerDialog: { root: string; panel: string; content: string; }; headerDialogActions: string; headerDialogButton: string; headerDialogCloseButton: string; headerDialogLink: string; headerDialogNav: string; headerDialogNavItem: string; headerDialogText: string; headerLink: string; headerMobileActions: string; headerNav: string; headerNavItem: string; }; } export declare const useHeaderStyleProps: ({ actionsColor, color, hasActionsAtEnd, isCurrentLink, isSimple, }?: UseHeaderStyleProps) => UseHeaderStyleReturn;