import './Icon.css'; import React from 'react'; import { PropsWithHTMLAttributesAndRef } from '../../utils/types/PropsWithHTMLAttributes'; export declare type IconPropSize = 'xs' | 's' | 'm' | 'l'; export declare type IconPropView = 'error' | 'brand' | 'ghost' | 'link' | 'primary' | 'secondary' | 'success' | 'warning' | 'white' | 'disabled'; export declare type Props = { view?: IconPropView; size?: IconPropSize; }; export declare type IconProps = PropsWithHTMLAttributesAndRef<{ view?: IconPropView; size?: IconPropSize; }, HTMLSpanElement>; export declare type IconComponent = React.FC; export declare const cnIcon: import("@bem-react/classname").ClassNameFormatter; export declare const Icon: IconComponent;