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