import * as React from 'react'; interface LogoProps { /** * Whether to show the "Arbor" text alongside the logo */ withText?: boolean; /** * Whether to use light (dark text) or dark (white text) variant * Only applies when withText is true */ light?: boolean; /** * Width of the logo in pixels * @default withText ? 66 : 25 */ width?: number; /** * Height of the logo in pixels * @default withText ? 26 : 25 */ height?: number; /** * Custom className */ className?: string; /** * Custom style */ style?: React.CSSProperties; } /** * Logo component - Arbor Design System * * Displays the Arbor logo with optional text in light or dark variants. */ declare const Logo: React.ForwardRefExoticComponent>; export { Logo, type LogoProps };