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