import React from "react";
export default Icon;
interface IconProps {
    viewBox: string;
    paths: {
        d: string;
        opacity: string;
    }[];
}
declare function Icon({ viewBox, paths }: IconProps): React.JSX.Element;
