import * as React from "react"; import { IconPropsType } from "./PropsType"; import { Omit } from "../_util/types"; export declare type SvgProps = Omit, "type">; export interface IconProps extends IconPropsType, SvgProps { onClick?: React.MouseEventHandler; } export default class Icon extends React.Component { static LoadSprite: (preicons?: string | { [key: string]: string; }) => void; componentDidMount(): void; render(): JSX.Element; }