import * as React from 'react'; import { IconType } from './SVG'; import * as PropTypes from 'prop-types'; declare class Icon extends React.Component { static displayName: string; static Type: ["left", "right", "search", "user", "check-circle-fill", "close-circle-fill", "info-circle-fill", "warning-circle-fill"]; static propsType: PropTypes.ValidationMap; render(): JSX.Element; } declare namespace Icon { interface Props extends React.Props<{}> { className?: string; style?: React.CSSProperties; type: IconType; spin?: boolean; children?: undefined | null; } } export default Icon;