import PropTypes from 'prop-types'; import { ThemeColorIndex } from "../../styles/theme.interface"; export interface IconInterface { viewBox: string; path: string; [props: string]: any; } export interface IconProps { icon: IconInterface; className?: string; width?: number; height?: number; title?: string; color?: ThemeColorIndex; [props: string]: any; } export declare const Icon: { ({ icon, className, width, height, title, color, ...props }: IconProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { icon: PropTypes.Validator; viewBox: PropTypes.Requireable; }>>; color: PropTypes.Requireable; width: PropTypes.Requireable; height: PropTypes.Requireable; className: PropTypes.Requireable; onClick: PropTypes.Requireable<(...args: any[]) => any>; }; };