import * as React from 'react';
import IconProps from './IconProps';
/**
 * @author 田尘殇Sean(sean.snow@live.com) create at 2017/11/4
 */
export default class SvgIcon extends React.Component<IconProps> {
    static defaultProps: {
        width: number;
        height: number;
        viewBox: string;
    };
    getPathProps(path: any): any;
    render(): JSX.Element;
}
