import * as react from 'react';
import { SxProps, Theme } from '@mui/material';
import { IconName } from '../../../BrandCore/Icon.js';

declare const iconSizeMap: Record<string, number>;
interface IconProps {
    color?: string;
    name: IconName;
    size?: number;
    sx?: SxProps<Theme>;
}
declare const Icon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;

export { Icon as default, iconSizeMap };
export type { IconProps };
