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