import type { ItemProps } from '../list/types.js'; import type { HTMLAttributes } from 'svelte/elements'; export interface MenuProps extends HTMLAttributes { anchor?: HTMLElement | undefined; element?: HTMLDivElement; open?: boolean; coverAnchor?: boolean; } export type MenuItemProps = Omit;