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