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