import { IconCollection, IconElement } from '../Icon'; import { ThemeProvider } from '../../../theme/src/index.tsx'; export declare class IconSVGInnerCollection implements IconCollection { readonly light_url: URL | string; readonly dark_url?: URL | string | null; readonly classNamer?: (element: IconElement) => string; lightPrefix: string; darkPrefix: string; constructor(light_url: URL | string, dark_url?: URL | string | null, classNamer?: (element: IconElement) => string); setup(element: IconElement): void; draw(element: IconElement, theme: ThemeProvider): import("react").JSX.Element; }