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