/** @typedef {typeof __propDef.props} IconProps */ /** @typedef {typeof __propDef.events} IconEvents */ /** @typedef {typeof __propDef.slots} IconSlots */ export default class Icon extends SvelteComponentTyped<{ size?: string; icon?: string; width?: string; height?: string; color?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type IconProps = typeof __propDef.props; export type IconEvents = typeof __propDef.events; export type IconSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; icon?: string; width?: string; height?: string; color?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};