import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; type MenuPopoverProps = Omit, "class"> & { open?: boolean; trigger: HTMLElement | null; placement?: "bottom-start" | "bottom-end" | "top-start" | "top-end"; align?: "start" | "end" | "center"; label: string; class?: string; closeOnOutside?: boolean; closeOnEscape?: boolean; children?: Snippet; }; declare const MenuPopover: import("svelte").Component; type MenuPopover = ReturnType; export default MenuPopover; //# sourceMappingURL=MenuPopover.svelte.d.ts.map