import React from "react";
import { Icons, IconVariants } from "../../libs/types";
export declare const ARIcon: React.FC<{
    viewBox?: string;
    size?: string | number | undefined;
    variant?: IconVariants;
    icon: Icons;
    fill?: string;
    stroke?: string;
    strokeWidth?: number;
    style?: React.CSSProperties | undefined;
}>;
