import React from 'react'; import type { IllustrationSvgProps } from './types'; interface BaseSvgProps extends IllustrationSvgProps { children: React.ReactNode; viewBox?: string; } declare const BaseSvg: ({ children, width, height, viewBox, testID, }: BaseSvgProps) => React.JSX.Element; export default BaseSvg;