import React, { SVGProps, ReactNode } from 'react'; import { ThemeOverrideProps } from '@xsolla/xui-core'; interface SvgThemedProps extends SVGProps, ThemeOverrideProps { children?: ReactNode; "data-testid"?: string; testID?: string; } declare const SvgThemed: React.ForwardRefExoticComponent & React.RefAttributes>; export { SvgThemed, type SvgThemedProps };