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