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