import * as React from 'react'; interface AvatarLogoLockupProps { /** * Image source URL for the avatar */ avatarSrc?: string; /** * Initials to display in avatar when no image is provided */ avatarInitials?: string; /** * Alt text for the avatar image */ avatarAlt?: string; /** * Click handler for the avatar section */ onAvatarClick?: () => void; /** * Click handler for the logo section */ onLogoClick?: () => void; /** * Custom className */ className?: string; /** * Custom style */ style?: React.CSSProperties; } /** * AvatarLogoLockup component - Arbor Design System * * A navigation component combining user avatar with Arbor logo, * typically used in the top navigation bar. */ declare const AvatarLogoLockup: React.ForwardRefExoticComponent>; export { AvatarLogoLockup, type AvatarLogoLockupProps };