/** @typedef {typeof __propDef.props} StopIconProps */ /** @typedef {typeof __propDef.events} StopIconEvents */ /** @typedef {typeof __propDef.slots} StopIconSlots */ export default class StopIcon extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, {}> { } export type StopIconProps = typeof __propDef.props; export type StopIconEvents = typeof __propDef.events; export type StopIconSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};