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