import { IconCollection, IconElement } from '../Icon'; import { ThemeProvider } from '../../../theme/src/index.tsx'; export declare class IconSVGCollection implements IconCollection { defaultIcon: string; lights: { [name: string]: string; }; darks: { [name: string]: string; }; constructor(defaultIcon: string); addIcon(name: string, light_icon: URL, dark_icon: URL): void; setup(element: IconElement): void; draw(element: IconElement, theme: ThemeProvider): import("react").JSX.Element; }