/** @typedef {typeof __propDef.props} HashProps */ /** @typedef {typeof __propDef.events} HashEvents */ /** @typedef {typeof __propDef.slots} HashSlots */ export default class Hash extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type HashProps = typeof __propDef.props; export type HashEvents = typeof __propDef.events; export type HashSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};