import { type WithElementRef } from "../../../utils.js"; import type { HTMLAttributes } from "svelte/elements"; type Props = WithElementRef> & { open?: boolean; onOpenChange?: (open: boolean) => void; }; declare const DropdownMenu: import("svelte").Component; type DropdownMenu = ReturnType; export default DropdownMenu;