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