import React from 'react';
import { TTone } from '@onesy/style-react';
import { IBaseElement, ISizeExtendedAny } from '../types';
export declare const rtl_icons: string[];
export declare type IIcon = Omit<IBaseElement, 'size'> & {
    size?: ISizeExtendedAny;
    tone?: TTone;
    viewBox?: string;
    name?: string;
    short_name?: string;
    noRtl?: boolean;
};
declare const Icon: React.FC<IIcon>;
export default Icon;
