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