import { default as React } from 'react';
import { AchsSize } from '../../../types';
export interface IconProps extends React.HTMLAttributes<HTMLElement> {
    version?: 'borderless' | 'default' | 'rounded';
    size?: 'xs' | AchsSize;
    iconName: string;
    backgroundColor?: string;
    borderColor?: string;
    iconColor?: string;
}
export declare const Icon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<HTMLElement>>;
export default Icon;
