import { SvelteComponentTyped } from "svelte"; import { type IconValue } from "./IconType"; declare const __propDef: { props: { icon: IconValue; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type IconProps = typeof __propDef.props; export type IconEvents = typeof __propDef.events; export type IconSlots = typeof __propDef.slots; export default class Icon extends SvelteComponentTyped { } export {};