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