import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { icons?: Record; }; 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 {};