import Thorium, { Components, Controller } from "thoriumjs"; type IconType = "background" | "mask"; export interface IconInitOptions { prop?: Thorium.ElementInterface["prop"]; proto?: Thorium.ElementInterface["proto"]; path?: string; type: IconType; } export declare class Icon extends Components.Div { constructor(options: IconInitOptions); } export {};