/** @typedef {typeof __propDef.props} UserIconProps */ /** @typedef {typeof __propDef.events} UserIconEvents */ /** @typedef {typeof __propDef.slots} UserIconSlots */ export default class UserIcon extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, {}> { } export type UserIconProps = typeof __propDef.props; export type UserIconEvents = typeof __propDef.events; export type UserIconSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};