import { SvelteComponent } from "svelte"; declare const __propDef: { props: { color?: string; width?: number; height?: number; viewBox?: string; strokeWidth?: number; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type IconProps = typeof __propDef.props; export type IconEvents = typeof __propDef.events; export type IconSlots = typeof __propDef.slots; export default class Icon extends SvelteComponent { } export {};