import React from 'react'; import PropTypes from 'prop-types'; import { SVGPropsOptionalViewBox } from '@splunk/react-icons/SVGEnterprise'; declare function SVGInternal({ viewBox, ...otherProps }: SVGPropsOptionalViewBox): React.JSX.Element; declare namespace SVGInternal { var propTypes: { viewBox: PropTypes.Requireable; }; } export default SVGInternal;