/** @typedef {typeof __propDef.props} BiCheckCircleProps */ /** @typedef {typeof __propDef.events} BiCheckCircleEvents */ /** @typedef {typeof __propDef.slots} BiCheckCircleSlots */ export default class BiCheckCircle extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type BiCheckCircleProps = typeof __propDef.props; export type BiCheckCircleEvents = typeof __propDef.events; export type BiCheckCircleSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};