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