import { type WithElementRef } from "../../../utils.js"; import type { HTMLButtonAttributes } from "svelte/elements"; type Props = WithElementRef & { inset?: boolean; destructive?: boolean; }; declare const DropdownMenuItem: import("svelte").Component; type DropdownMenuItem = ReturnType; export default DropdownMenuItem;