import { IconProp } from "@fortawesome/fontawesome-svg-core"; import type { PropsFor } from "../../types.js"; export type DropdownItemProps = PropsFor<"div", { /** Font Awesome icon reference (or string if using library) */ icon?: IconProp; /** Available states: `default`, `success`, `warning`, `alert` and `inactive` */ state?: "default" | "success" | "warning" | "alert" | "inactive"; }>; declare const DropdownItem: import("react").ForwardRefExoticComponent>; export default DropdownItem;