import React, { HTMLAttributes } from 'react';
declare const icons: {
folder: JSX.Element;
file: JSX.Element;
tag: JSX.Element;
arrowLeft: JSX.Element;
arrowRight: JSX.Element;
download: JSX.Element;
circleOk: JSX.Element;
circleError: JSX.Element;
search: JSX.Element;
share: JSX.Element;
};
interface IconProps {
icon: keyof typeof icons;
color?: 'primary' | 'secondary';
size?: number | 's' | 'm' | 'l' | 'xl' | 'xxl';
}
export declare const UiIcon: React.FC>;
export {};