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