/** * @jsxRuntime classic * @jsx jsx */ import type { IconSize } from './types'; type IconWrapperProps = { appearance?: 'brand' | 'legacy' | 'neutral' | 'inverse'; customThemeSvg?: string; iconColor?: string; isAssets?: boolean; label: string; size?: IconSize; svg: string; testId?: string; type?: 'tile' | 'rovo' | 'data-center'; }; export declare function IconWrapper({ size, label, svg, customThemeSvg, testId: userDefinedTestId, appearance, iconColor: customIconColor, isAssets, type, }: IconWrapperProps): JSX.Element; export {};