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