import React from 'react';
import './Icon.style.scss';
import { Props } from './Icon.types';
/**
 * Icon component that can dynamically display SVG icons with a valid name.
 */
declare const Icon: React.FC<Props>;
export default Icon;
