import * as React from 'react'; import './styles.scss'; interface SvgIconPropsInterface { children: JSX.Element | Array; component?: React.ReactType; stroked?: boolean; viewBox?: string; } export interface SvgIconProps extends Pick, Exclude, keyof SvgIconPropsInterface>>, React.RefAttributes { color?: string; className?: string; fontSize?: string | number; size?: 'small' | 'large' | 'inherit'; title?: string; style?: React.CSSProperties; variant?: 'success' | 'warning' | 'error' | 'disabled'; tabIndex?: number; } declare function SvgIcon(props: SvgIconProps & SvgIconPropsInterface): React.JSX.Element; declare const _default: React.MemoExoticComponent; export default _default; //# sourceMappingURL=index.d.ts.map