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