import PropTypes from "prop-types"; interface IconProps { className?: string; name?: string; } declare const Icon: { ({ name, ...otherProps }: IconProps): import("react/jsx-runtime").JSX.Element; propTypes: { name: PropTypes.Validator; }; }; export default Icon;