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