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