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