import { type WithElementRef } from "../../../utils.js"; import type { HTMLAttributes } from "svelte/elements"; type Props = WithElementRef> & { align?: "start" | "center" | "end"; }; declare const DropdownMenuContent: import("svelte").Component; type DropdownMenuContent = ReturnType; export default DropdownMenuContent;