import type { ReactNode } from "react"; import type { IconName } from "../../types"; type MenuBooleanItemProps = Readonly<{ children: ReactNode; className?: string; "data-testid"?: string; icon?: IconName; label: string; }>; /** * Shared menu layout for boolean controls (toggle and checkbox). * Renders: [label] [icon] ...space... [children] * * The caller provides the specific input control (ToggleSwitch or Checkbox) * as children. * * @internal */ export declare const MenuBooleanItem: ({ children, className, "data-testid": dataTestId, icon, label, }: MenuBooleanItemProps) => import("react/jsx-runtime").JSX.Element; export {};