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