import React from "react";
import { Icons } from "../../libs/types";
declare class Icon {
    private _stroke?;
    private _strokeWidth?;
    constructor(stroke?: string, strokeWidth?: number);
    Compiler: (icon: Icons) => React.JSX.Element | null;
}
export default Icon;
