import React from 'react'; import { BrowserTypes } from '../../typings'; import { SvgIconProps } from '@material-ui/core'; export interface BrowserIconProps extends SvgIconProps { browserType: BrowserTypes; } declare const BrowserIcon: React.FC; export { BrowserIcon };