import { type LogoSize } from './types'; type LogoWrapperProps = { appearance: 'brand' | 'neutral' | 'inverse' | 'legacy'; customThemeSvg?: string; iconColor?: string; isAssets?: boolean; label: string; size?: LogoSize; svg: string; testId?: string; textColor?: string; type?: 'tile' | 'rovo' | 'data-center'; }; export declare function LogoWrapper({ appearance, size, svg, customThemeSvg, label, testId: userDefinedTestId, iconColor: customIconColor, textColor: customTextColor, isAssets, type, }: LogoWrapperProps): JSX.Element; export {};