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