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