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