import { OptionItemProps } from '@zag-js/menu'; import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; type CheckboxItemProps = Omit; export interface MenuCheckboxItemBaseProps extends CheckboxItemProps, PolymorphicProps { } export interface MenuCheckboxItemProps extends MenuCheckboxItemBaseProps, /** * @vue-ignore */ HTMLAttributes { } export type MenuCheckboxItemEmits = { 'update:checked': [value: boolean]; }; declare const _default: __VLS_WithTemplateSlots< DefineComponent any; }, string, PublicProps, Readonly & Readonly<{ "onUpdate:checked"?: ((value: boolean) => any) | undefined; }>, { checked: boolean; disabled: boolean; closeOnSelect: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };