/// import { SvgProps } from './types'; declare const Svg: { ({ width: propWidth, height: propHeight, viewBox, fill, color, children, ...props }: SvgProps): JSX.Element; defaultProps: { width: string; color: string; }; displayName: string; }; export default Svg;