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