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