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