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