import React from 'react';
import type { ThemeName } from '../../common/ThemeSwitch';
interface IconProps {
    className?: string;
    style?: React.CSSProperties;
    theme?: ThemeName[];
}
declare const MacOSIcon: React.FC<IconProps>;
export default MacOSIcon;
