export default MenuItemCheckbox; type MenuItemCheckbox = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * A menu item widget with a checkbox. * @see https://w3c.github.io/aria/#menuitemcheckbox */ declare const MenuItemCheckbox: import("svelte").Component, {}, "checked">; import type { ButtonProps } from '../../typedefs'; import type { MenuItemProps } from '../../typedefs';