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