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