interface Props { size?: string; role?: string; color?: string; ariaLabel?: string; class?: string; } /** * [Go to docs](https://runes-webkit.codewithshin.com/) * ## Props * @props: size: any = ctx.size || "24"; * @props:role: any = ctx.role || "img"; * @props:color: any = ctx.color || "currentColor"; * @props:ariaLabel: any = "Visual Studio Code"; * @props:class: string; */ declare const Visualstudiocode: import("svelte").Component; type Visualstudiocode = ReturnType; export default Visualstudiocode;