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