/** @typedef {typeof __propDef.props} ArrowRightStartOnRectangleProps */ /** @typedef {typeof __propDef.events} ArrowRightStartOnRectangleEvents */ /** @typedef {typeof __propDef.slots} ArrowRightStartOnRectangleSlots */ export default class ArrowRightStartOnRectangle extends SvelteComponent<{ [x: string]: any; }, { click: MouseEvent; mouseover: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; keydown: KeyboardEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type ArrowRightStartOnRectangleProps = typeof __propDef.props; export type ArrowRightStartOnRectangleEvents = typeof __propDef.events; export type ArrowRightStartOnRectangleSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { click: MouseEvent; mouseover: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; keydown: KeyboardEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};