import * as React from "react"; import { IconType } from "./icons"; import "./IconSvg.scss"; import { IconsProps } from "./types"; type IconSvgTypes = { type: IconType; className?: string; } & Partial; declare class IconSvg extends React.PureComponent { render(): JSX.Element; } export { IconSvg, IconType as IconSvgTypes };