/** @typedef {typeof __propDef.props} CheckboxProps */ /** @typedef {typeof __propDef.events} CheckboxEvents */ /** @typedef {typeof __propDef.slots} CheckboxSlots */ export default class Checkbox extends SvelteComponentTyped<{ checked?: boolean | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type CheckboxProps = typeof __propDef.props; export type CheckboxEvents = typeof __propDef.events; export type CheckboxSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { checked?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};