import type { HTMLAttributes } from '../../../internal/html-attributes.js'; import type { PropsWithElement } from '../../../internal/props-with-element.js'; export interface MenuArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> { } declare const Arrow: import("svelte").Component; type Arrow = ReturnType; export default Arrow;