import React, { Component, CSSProperties } from 'react'; export type BaseProps = { /** Set the height of the icon, ex. '16px' */ height?: string; /** Set the width of the icon, ex. '16px' */ width?: string; /** Set the viewbox of the svg */ viewBox?: string; /** Path element */ predefinedClassName?: string; className?: string; style?: CSSProperties; colors?: string[]; totalColor?: number; } & React.SVGAttributes & React.DOMAttributes; export default class Base extends Component { static displayName: string; static defaultProps: { height: any; width: any; viewBox: string; predefinedClassName: string; className: string; style: { fill: string; }; }; render(): React.JSX.Element; }