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