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