type LogoColor = 'black' | 'white'; export interface LogoProps { /** Changes the size of the logo. */ size?: number; /** Adds custom classes to the element. */ className?: string; /** Changes the color of the logo. */ color?: LogoColor; /** Changes to the byline variant of the logo. */ byline?: boolean; /** Sets the data-testid attribute. */ testId?: string; } declare const Logo: React.FC; export default Logo;