import { type NavigationLinkProps } from '../../data/NavigationData'; import { type BlockVersion } from '../../model/BlockVersion'; import { type InternetButtonProps } from './HeaderProps'; export interface HeaderSubMenuProps { version?: BlockVersion; subItems?: NavigationLinkProps[]; internetBankButton?: InternetButtonProps; dropdownMenuAriaLabel?: string; chatBotAriaLabel?: string; } export declare const HeaderSubMenu: import("@redneckz/uni-jsx").UNIComponent;