/** @typedef {typeof __propDef.props} CheckboxGroupProps */ /** @typedef {typeof __propDef.events} CheckboxGroupEvents */ /** @typedef {typeof __propDef.slots} CheckboxGroupSlots */ export default class CheckboxGroup extends SvelteComponentTyped<{ [x: string]: any; items?: any[]; group?: any[]; }, { [evt: string]: CustomEvent; }, {}> { } export type CheckboxGroupProps = typeof __propDef.props; export type CheckboxGroupEvents = typeof __propDef.events; export type CheckboxGroupSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; items?: any[]; group?: any[]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};