/** @typedef {typeof __propDef.props} ArrowLeftStartOnRectangleProps */ /** @typedef {typeof __propDef.events} ArrowLeftStartOnRectangleEvents */ /** @typedef {typeof __propDef.slots} ArrowLeftStartOnRectangleSlots */ export default class ArrowLeftStartOnRectangle extends SvelteComponent<{ [x: string]: any; }, { click: MouseEvent; mouseover: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; keydown: KeyboardEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type ArrowLeftStartOnRectangleProps = typeof __propDef.props; export type ArrowLeftStartOnRectangleEvents = typeof __propDef.events; export type ArrowLeftStartOnRectangleSlots = 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 {};