import React from 'react';
import { Icon } from './types';
export type Props = Icon & React.SVGAttributes<any> & {
    getUrl?: (icon: Icon) => string;
};
declare const Svg: React.FC<Props>;
export default Svg;
