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