import React from 'react'; import type { WithNullableEventHandlers } from '../../types'; declare type Props = WithNullableEventHandlers & React.SVGProps>; declare type DefaultProps = { className: string; name: string; width: number; height: number; }; export default class Icon extends React.PureComponent { static displayName: string; static defaultProps: DefaultProps; render(): JSX.Element; } export {};