/** @typedef {typeof __propDef.props} IndianRupeeProps */ /** @typedef {typeof __propDef.events} IndianRupeeEvents */ /** @typedef {typeof __propDef.slots} IndianRupeeSlots */ export default class IndianRupee extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type IndianRupeeProps = typeof __propDef.props; export type IndianRupeeEvents = typeof __propDef.events; export type IndianRupeeSlots = 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 {};