import { CheckedState } from './utils'; import { MenuItemEmits, MenuItemProps } from './MenuItem'; export type MenuCheckboxItemEmits = MenuItemEmits & { /** Event handler called when the checked state changes. */ 'update:checked': [payload: boolean]; }; export interface MenuCheckboxItemProps extends MenuItemProps { /** The controlled checked state of the item. Can be used as `v-model:checked`. */ checked?: CheckedState; } declare const _default: __VLS_WithTemplateSlots, { checked: boolean; }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { select: (event: Event) => void; "update:checked": (payload: boolean) => void; }, string, import('vue').PublicProps, Readonly, { checked: boolean; }>>> & { onSelect?: ((event: Event) => any) | undefined; "onUpdate:checked"?: ((payload: boolean) => any) | undefined; }, { checked: CheckedState; }, {}>, Readonly<{ default: (props: { /** Current checked state */ checked: CheckedState; }) => any; }> & { default: (props: { /** Current checked state */ checked: CheckedState; }) => any; }>; export default _default; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_PrettifyLocal : P[K]; }; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {};