import { ReactNode } from "react"; /** * Renders a list of button items. * * This function takes children elements (which can be a single ReactNode * or an array of ReactNodes) and maps them to list items (
  • ) * with unique keys. * * @param {ReactNode | ReactNode[]} children - The button items to render. * @returns {ReactElement | null} A React fragment containing a list of *
  • elements, each wrapping a child. */ export declare const renderButtonItem: (children: ReactNode | ReactNode[]) => import("react/jsx-runtime").JSX.Element;