import type { RowAggregated, RowGroup, RowLeaf } from "@1771technologies/lytenyte-shared"; import type { API, CellParamsWithIndex, GridSpec } from "../types"; import type { ReactNode } from "react"; import { type SlotComponent } from "../hooks/use-slot/index.js"; export declare const RowGroupCell: ({ api, row, leafLabel, groupLabel, aggLabel, expansionSlot, }: CellParamsWithIndex & { leafLabel?: (row: RowLeaf, api: API) => ReactNode; groupLabel?: (row: RowGroup, api: API) => ReactNode; aggLabel?: (row: RowAggregated, api: API) => ReactNode; expansionSlot?: SlotComponent<{ readonly row: RowGroup; readonly api: API; }>; }) => import("react/jsx-runtime").JSX.Element;